We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f97583d commit 4a45e54Copy full SHA for 4a45e54
.github/workflows/library-js-feature.yml
@@ -83,4 +83,28 @@ jobs:
83
uses: actions/upload-artifact@v4
84
with:
85
name: coverage-report
86
- path: tmp/coverage/cobertura-coverage.xml
+ path: tmp/coverage/cobertura-coverage.xml
87
+
88
+ # Bench the dist
89
+ check-bench:
90
+ name: "Check / Bench"
91
+ needs:
92
+ check-build
93
+ runs-on: ubuntu-latest
94
+ container:
95
+ image: ghcr.io/matrixai/github-runner
96
+ permissions:
97
+ packages: read
98
+ contents: read
99
+ actions: write
100
+ steps:
101
+ - uses: actions/checkout@v4
102
+ - uses: actions/download-artifact@v4
103
+ with:
104
+ name: dist
105
+ path: ./dist
106
+ - name: Run bench
107
+ run: |
108
+ nix develop .#ci --command bash -c $'
109
+ npm run bench --if-present
110
+ '
0 commit comments