Skip to content

chore(deps): update all non-major dependencies #1780

chore(deps): update all non-major dependencies

chore(deps): update all non-major dependencies #1780

Workflow file for this run

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