Skip to content

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

chore(deps): update all non-major dependencies

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

Workflow file for this run

name: CI
on:
push:
pull_request:
types: [opened, synchronize]
env:
NODE_VERSION: 20
jobs:
build:
name: build - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
timeout-minutes: 10
strategy:
fail-fast: true
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
steps:
- uses: actions/[email protected]
- name: Install pnpm
uses: pnpm/[email protected]
id: pnpm-install
- name: Install Node
uses: actions/[email protected]
with:
node-version: ${{ env.NODE_VERSION }}
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm build
- name: Lint
run: pnpm lint
- name: Typecheck
run: pnpm typecheck
lint:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/[email protected]
- uses: pnpm/[email protected]
name: Install pnpm
id: pnpm-install
- name: Install Node.js
uses: actions/[email protected]
with:
node-version: ${{ env.NODE_VERSION }}
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm lint