Skip to content

Commit

Permalink
trying perf workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielJDufour committed Feb 25, 2023
1 parent c070bda commit 345f1e2
Showing 1 changed file with 22 additions and 13 deletions.
35 changes: 22 additions & 13 deletions .github/workflows/test-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,30 @@ name: test-main
run-name: test-main
on: [push]
jobs:
test:
perf:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 14, 16, 18 ]
name: test on node version ${{ matrix.node }}
name: test performance
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm run clean
- run: npm run lint
- run: npm install
- run: npm run setup
- run: npm run test:tsc
- run: npm run test:js
- run: npm run test:ts
- run: npm run perf
# test:
# runs-on: ubuntu-latest
# strategy:
# matrix:
# node: [ 14, 16, 18 ]
# name: test on node version ${{ matrix.node }}
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-node@v3
# with:
# node-version: ${{ matrix.node }}
# - 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

0 comments on commit 345f1e2

Please sign in to comment.