File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010
1111 strategy :
1212 matrix :
13- node-version : [16.x, 24.x]
13+ node-version : [24.x]
1414
1515 steps :
1616 - uses : actions/checkout@v4
2929 run : npm run test:e2e
3030 - name : Run unit tests
3131 run : npm run test:unit
32-
33- bun-tests :
34- runs-on : ubuntu-latest
35- timeout-minutes : 30
36-
37- steps :
38- - name : Checkout code
39- uses : actions/checkout@v4
40- - name : Remove Node.js installed by setup-node action (if any)
41- run : |
42- if command -v node &> /dev/null; then
43- sudo rm -rf "$(which node)"
44- fi
45- if command -v npm &> /dev/null; then
46- sudo rm -rf "$(which npm)"
47- fi
48-
49- - name : Setup Bun
50- uses : oven-sh/setup-bun@v1
51- - name : Install dependencies using Bun
52- run : bun install
53- - name : Run end-to-end tests with Bun
54- run : bun run test:e2e
55- - name : Run unit tests with Bun
56- run : bun run test:unit
You can’t perform that action at this time.
0 commit comments