Skip to content

chore(ci): update github action workflow #76

chore(ci): update github action workflow

chore(ci): update github action workflow #76

Workflow file for this run

name: Dassie CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
name: Install pnpm
id: pnpm-install
with:
version: 9
run_install: false
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Run typecheck
run: pnpm typecheck
- name: Run tests
run: pnpm test
- name: Run linter
run: pnpm lint
- name: Run meta-updater check
run: pnpm metacheck