Skip to content

ci: bump actions/setup-node from 6 to 7 in the github-actions group #84

ci: bump actions/setup-node from 6 to 7 in the github-actions group

ci: bump actions/setup-node from 6 to 7 in the github-actions group #84

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Setup Node.js
uses: actions/setup-node@v7
with:
node-version-file: ".nvmrc"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Type check
run: npx tsc --noEmit
- name: Build
run: npm run build