New definitions of "H", "P", "p" and "∞", supposed new Features ASYNC_FUNCTION
, ITERATOR
and JAPANESE_INFINITY
#325
Workflow file for this run
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: JScrewIt Node.js CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 16.x | |
- run: npm install --workspaces | |
- run: npm run --workspaces make | |
- run: npm install | |
- run: gulp lint | |
- run: gulp bundle:lib | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: lib | |
path: lib | |
test: | |
name: test (Node.js ${{ matrix.node-version }}) | |
needs: build | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [0.10.x, 0.12.x, 4.x, 6.x, 8.x, 10.x, 12.x, 14.x, 16.x] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm install ebdd expectations mocha@3 postrequire | |
- uses: actions/download-artifact@v2 | |
with: | |
name: lib | |
path: lib | |
- run: npm test |