chore(deps): update all non-major dependencies #1768
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
# build and test on linux, windows, mac with node 14, 16, 18 | |
name: CI | |
on: | |
push: | |
branches: | |
- main | |
- v1 | |
pull_request: | |
branches: | |
- main | |
- v1 | |
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 | |
# use min permissions | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
jobs: | |
# "checks" job runs on linux + 16 only and checks that install, build, lint and audit work | |
# it also primes the pnpm store cache for linux, important for downstream tests | |
checks: | |
timeout-minutes: 5 | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
# pseudo-matrix for convenience, NEVER use more than a single combination | |
node: [16] | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: install pnpm | |
shell: bash | |
run: | | |
PNPM_VER=$(jq -r '.packageManager | if .[0:5] == "pnpm@" then .[5:] else "packageManager in package.json does not start with pnpm@\n" | halt_error(1) end' package.json) | |
echo installing pnpm version $PNPM_VER | |
npm i -g pnpm@$PNPM_VER | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: 'pnpm' | |
cache-dependency-path: '**/pnpm-lock.yaml' | |
- name: install | |
run: pnpm install --frozen-lockfile --prefer-offline --ignore-scripts | |
- name: format | |
run: pnpm check:format | |
- name: lint | |
if: (${{ success() }} || ${{ failure() }}) | |
run: pnpm check:lint | |
- name: types | |
if: (${{ success() }} || ${{ failure() }}) | |
run: pnpm check:types | |
- name: audit | |
if: (${{ success() }} || ${{ failure() }}) | |
run: pnpm check:audit | |
- name: publint | |
if: (${{ success() }} || ${{ failure() }}) | |
run: pnpm check:publint | |
test: | |
timeout-minutes: 10 | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
node: [16] | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
svelte: [4] | |
include: | |
- node: 14 | |
os: ubuntu-latest | |
svelte: 3 | |
- node: 18 | |
os: ubuntu-latest | |
svelte: 4 | |
- node: 20 | |
os: ubuntu-latest | |
svelte: 4 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: install pnpm | |
if: matrix.node != 14 | |
shell: bash | |
run: | | |
PNPM_VER=$(jq -r '.packageManager | if .[0:5] == "pnpm@" then .[5:] else "packageManager in package.json does not start with pnpm@\n" | halt_error(1) end' package.json) | |
echo installing pnpm version $PNPM_VER | |
npm i -g pnpm@$PNPM_VER | |
- name: install legacy pnpm for node14 | |
if: matrix.node == 14 | |
run: | | |
npm i -g pnpm@^7.33.0 | |
tmppkg="$(jq '.engines.pnpm = "^7.33.0"' package.json)" && echo -E "${tmppkg}" > package.json && tmppkg="" | |
- name: use svelte 3 | |
if: matrix.svelte == 3 | |
run: | | |
tmppkg="$(jq '.devDependencies.svelte = "^3.59.2"' package.json)" && echo -E "${tmppkg}" > package.json && tmppkg="" | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: 'pnpm' | |
cache-dependency-path: '**/pnpm-lock.yaml' | |
- name: install | |
if: matrix.node != 14 && matrix.svelte != 3 | |
run: pnpm install --frozen-lockfile --prefer-offline --ignore-scripts | |
- name: install for node14 or svelte3 | |
if: matrix.node == 14 || matrix.svelte == 3 | |
run: pnpm install --no-frozen-lockfile --prefer-offline --ignore-scripts | |
- name: install playwright chromium | |
run: pnpm playwright install chromium | |
- name: run tests | |
run: pnpm test | |
- name: archive tests temp directory | |
if: failure() | |
shell: bash | |
run: tar -cvf test-temp.tar --exclude="node_modules" temp/ | |
- uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: test-failure-${{github.run_id}}-${{ matrix.os }}-${{ matrix.node }}-${{ matrix.svelte }} | |
path: | | |
test-temp.tar | |
pnpm-debug.log |