Merge pull request #1750 from bobisjan/dependabot/npm_and_yarn/babel/… #4812
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: {} | |
concurrency: | |
group: ci-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Tests | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
env: | |
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.11.0 | |
cache: pnpm | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm test | |
deployment: | |
name: 'Deployment' | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
needs: [test] | |
if: github.ref == 'refs/heads/main' | |
environment: | |
name: production | |
url: https://bobisjan.com | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.11.0 | |
cache: pnpm | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm run deploy |