Skip to content

fix(ci): use npm install instead of npm ci — lock file out of sync (P… #3

fix(ci): use npm install instead of npm ci — lock file out of sync (P…

fix(ci): use npm install instead of npm ci — lock file out of sync (P… #3

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
jobs:
build-and-test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: universal-refiner
steps:
- uses: actions/checkout@v4
- name: Setup Node 22
uses: actions/setup-node@v4
with:
node-version: '22'
- name: Install dependencies
run: npm install --no-fund
- name: Generate version file
run: node scripts/sync-version.mjs
- name: Type check
run: npx tsc --noEmit
- name: Run tests
run: npm test