Skip to content

Commit 4a45e54

Browse files
committed
WIP
1 parent f97583d commit 4a45e54

File tree

1 file changed

+25
-1
lines changed

1 file changed

+25
-1
lines changed

.github/workflows/library-js-feature.yml

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,4 +83,28 @@ jobs:
8383
uses: actions/upload-artifact@v4
8484
with:
8585
name: coverage-report
86-
path: tmp/coverage/cobertura-coverage.xml
86+
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

Comments
 (0)