update github actions checkout to v4 #122
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# (c) William Belle, 2021-2023. | |
# See the LICENSE file for more details. | |
name: Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Node.js ${{ matrix.node }} CI | |
strategy: | |
fail-fast: false | |
matrix: | |
node: [ '16', '17', '18', '19', '20', '21' ] | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install and test | |
run: | | |
npm i | |
npm t |