Merge pull request #40 from brainhubeu/feature/add-unlicensed-to-blac… #7
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: Push to master branch | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
Test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 16 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '16.x' | |
- name: Install dependencies | |
run: yarn | |
- name: Run static code analysis | |
run: yarn run lint | |
- name: Run tests | |
run: yarn test |