Bump minimatch from 3.0.4 to 3.1.2 in /Code/NodeJS (#42) #59
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: Node CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: borales/[email protected] | |
- name: yarn install and test | |
working-directory: ./Code/NodeJS | |
run: | | |
yarn install | |
yarn test --coverage | |
env: | |
CI: true | |
- name: Upload coverage reports to Codecov | |
uses: codecov/[email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |