File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Internal E2E Tests
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+ pull_request :
8+ branches :
9+ - main
10+
11+ permissions :
12+ contents : read
13+
14+ jobs :
15+ test :
16+ name : Internal E2E Tests
17+ runs-on : ubuntu-24.04
18+
19+ steps :
20+ - uses : actions/checkout@v6
21+
22+ - name : Setup Node.js
23+ uses : actions/setup-node@v6
24+ with :
25+ node-version : 22.20.0
26+
27+ - name : Install dependencies
28+ run : npm ci --engine-strict # --engine-strict is used to fail-fast if deps require node versions unsupported by the repo
29+
30+ - name : Run e2e-tests
31+ working-directory : internal/e2e-tests
32+ run : npm run test
Original file line number Diff line number Diff line change 88 "npm" : " >= 8"
99 },
1010 "scripts" : {
11- "unit " : " node --test 'test/**/*.js'" ,
12- "unit -watch" : " node --test --watch 'test/**/*.js'"
11+ "test " : " node --test 'test/**/*.js'" ,
12+ "test -watch" : " node --test --watch 'test/**/*.js'"
1313 },
1414 "dependencies" : {
15- "adm-zip" : " ^ 0.5.17"
15+ "adm-zip" : " 0.5.17"
1616 }
1717}
You can’t perform that action at this time.
0 commit comments