Bump braces from 3.0.2 to 3.0.3 #314
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: Test | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
jobs: | |
test: | |
name: Run tests for each push | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 13 | |
- name: Install and test | |
run: | | |
npm install | |
npm test |