-
Notifications
You must be signed in to change notification settings - Fork 15
Bump js-yaml #27
This file contains hidden or 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: Build and test
"on":
push:
branches:
- master
pull_request:
branches:
- master
jobs:
Build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- "16.x"
- "17.x"
- "18.x"
- "19.x"
- "20.x"
steps:
- name: "Set up Node.js ${{ matrix.node-version }}"
uses: actions/setup-node@v1
with:
node-version: "${{ matrix.node-version }}"
- uses: actions/checkout@v2
- run: npm install
- run: npm run lint
- run: npm run test-and-coverage