Skip to content

ci: update to latest actions/* #1140

ci: update to latest actions/*

ci: update to latest actions/* #1140

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [ v4 ]
pull_request:
{}
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 16
- 18
- 20
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Reconfigure git to use HTTP authentication
run: >
git config --global url."https://github.com/".insteadOf ssh://git@github.com/
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- uses: actions/cache@v3
id: cache
with:
path: node_modules/
key: ${{ runner.os }}-node${{ matrix.node-version }}-${{ hashFiles('package*.json') }}
- run: npm ci --ignore-scripts
if: steps.cache.outputs.cache-hit != 'true'
- run: npm test
- run: npm run lint