Skip to content

ci: use "npm i" instead of "npm ci" #2

ci: use "npm i" instead of "npm ci"

ci: use "npm i" instead of "npm ci" #2

Workflow file for this run

name: Build and test
on:
push:
branches-ignore:
- 'main'
- 'releases/**'
paths-ignore:
- 'SBOM.json'
- '*.md'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 18.x, 20.x, 22.x ]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm i
- run: npm run build --if-present
- run: npm test