chore(deps): update all non-major dependencies #1990
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: | |
- master | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build-and-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-and-cache | |
- name: Install & Build | |
run: | | |
pnpm install | |
pnpm build | |
- name: Lint | |
run: pnpm lint | |
unit-test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18, 20] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-and-cache | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install & Build | |
run: | | |
pnpm install | |
pnpm build | |
- name: Run tests | |
run: pnpm test | |
integration-test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18, 20] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-and-cache | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install & Build | |
run: | | |
pnpm install | |
pnpm build | |
- name: Run integration tests | |
run: pnpm test:integration | |
smoke-test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18, 20] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-and-cache | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install & Build | |
run: | | |
pnpm install | |
pnpm build | |
- name: Run smoke tests | |
run: pnpm test:smoke |