Skip to content

chore(workflows): update bahmutov/npm-install action to v1.10.2 #1329

chore(workflows): update bahmutov/npm-install action to v1.10.2

chore(workflows): update bahmutov/npm-install action to v1.10.2 #1329

Workflow file for this run

name: Node CI
on: [push, pull_request]
jobs:
build:
name: Test on node ${{ matrix.node_version }} and ${{ matrix.os }}
runs-on: ubuntu-latest
strategy:
matrix:
node_version: [16, 18, 20]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1
with:
node-version: ${{ matrix.node_version }}
- name: npm install
uses: bahmutov/npm-install@e5c7e14408aa6089501de32bd16123b41738047e # v1.10.2
- name: test
run: npm test
- name: lint
run: npm run lint