Skip to content

Merge pull request #1752 from bobisjan/dependabot/npm_and_yarn/ember/… #4819

Merge pull request #1752 from bobisjan/dependabot/npm_and_yarn/ember/…

Merge pull request #1752 from bobisjan/dependabot/npm_and_yarn/ember/… #4819

Workflow file for this run

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