Merge pull request #740 from adamsc64/adamsc64/fix-todo-view-in-readme #1039
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: JavaScript | |
| on: | |
| push: | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/[email protected] | |
| with: | |
| fetch-depth: 1 | |
| - name: Set up node | |
| uses: actions/[email protected] | |
| - name: Install node packages | |
| run: npm install | |
| - name: See if unicorn.min.js is up-to-date | |
| run: | | |
| npm run build | |
| git diff --stat --exit-code | |
| - name: Test with ava | |
| run: npm run-script test |