Update all non-major dependencies #791
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: | |
env: | |
# we call `pnpm playwright install` instead | |
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: '1' | |
# cancel in-progress runs on new commits to same PR (gitub.event.number) | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.number || github.sha }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
Lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2.4.0 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '19.x' | |
cache: pnpm | |
- name: 'Create .env file' | |
run: echo "${{ secrets.ENV_FILE }}" > .env | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm check | |
- run: pnpm lint | |
Tests: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: [19, 20] | |
steps: | |
- run: git config --global core.autocrlf false | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2.4.0 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: pnpm | |
- name: 'Create .env file' | |
run: echo "${{ secrets.ENV_FILE }}" > .env | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm test:unit | |
- run: pnpm playwright install chromium --with-deps | |
- run: pnpm test:browser | |
- name: Upload test results | |
if: failure() | |
uses: actions/upload-artifact@v3 | |
with: | |
retention-days: 3 | |
name: test-failure-${{ github.run_id }}-${{ matrix.node-version }} | |
path: playwright-report/ |