File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed
Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Mutex CI
2+
3+ on :
4+ push :
5+ branches : [main]
6+ paths :
7+ - packages/engine/**
8+ pull_request :
9+ paths :
10+ - packages/engine/**
11+
12+ permissions :
13+ contents : read
14+
15+ jobs :
16+ test :
17+ runs-on : ubuntu-latest
18+ strategy :
19+ matrix :
20+ node-version : [24.x]
21+ fail-fast : false
22+ steps :
23+ - name : Harden Runner
24+ uses : step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
25+ with :
26+ egress-policy : audit
27+
28+ - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
29+ - name : Use Node.js ${{ matrix.node-version }}
30+ uses : actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
31+ with :
32+ node-version : ${{ matrix.node-version }}
33+ - name : Install dependencies
34+ run : npm ci --ignore-scripts
35+ - name : Run tests
36+ run : npm run test --workspace=packages/engine
You can’t perform that action at this time.
0 commit comments