test-main #69
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-main | |
run-name: test-main | |
on: [push] | |
jobs: | |
perf: | |
runs-on: ubuntu-latest | |
name: test performance | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
- run: npm install | |
- run: ls | |
- run: pwd | |
- run: npm run setup | |
- run: npm run perf | |
test: | |
runs-on: ubuntu-latest | |
name: run all tests | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: latest | |
- run: npm install | |
- run: npm run clean | |
- run: npm run lint | |
- run: npm run setup | |
- run: npm run test:tsc | |
- run: npm run test:js | |
- run: npm run test:ts |