Merge pull request #13 from antoniovazquezblanco/dependabot/npm_and_y… #30
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: Main workflow | |
on: [push, pull_request] | |
jobs: | |
run: | |
name: Run | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
- name: Set Node.js 12.x | |
uses: actions/setup-node@master | |
with: | |
node-version: 12.x | |
- name: npm install | |
run: npm install | |
- name: Lint | |
run: npm run format-check | |
- name: npm test | |
run: npm test |