Skip to content

chore(deps): update github actions #75

chore(deps): update github actions

chore(deps): update github actions #75

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
FORCE_COLOR: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20]
steps:
- uses: actions/[email protected]
- name: Setup pnpm
uses: pnpm/[email protected]
- name: Setup node
uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version}}
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm build
- name: Lint
run: pnpm lint
- name: Test
run: pnpm test
- name: Typecheck
run: pnpm typecheck