Chore: Update actions/setup-node action to v3.8.2 #329
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
name: CI | |
on: [push] | |
jobs: | |
test: | |
name: Node ${{ matrix.node }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: ['16.x'] | |
steps: | |
# https://github.com/actions/checkout | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
# https://github.com/actions/setup-node | |
- name: Setup Node ${{ matrix.node }} | |
uses: actions/setup-node@v3.8.2 | |
with: | |
node-version: ${{ matrix.node }} | |
# https://github.com/bahmutov/npm-install | |
- name: Install dependencies | |
uses: bahmutov/npm-install@v1 | |
# - name: Build | |
# run: npm run build | |
# - name: Lint | |
# run: npm run lint | |
- name: Test | |
run: npm test |