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 3847035 commit c7d9618Copy full SHA for c7d9618
.github/workflows/web.yml
@@ -25,13 +25,15 @@ jobs:
25
uses: actions/setup-node@v5
26
with:
27
node-version: 18
28
- cache: npm
29
- cache-dependency-path: '**/package-lock.json'
30
- - run: npm ci
+ - name: Use Bun
+ uses: oven-sh/setup-bun@v2
+ with:
31
+ bun-version: 1.3.10
32
+ - run: bun install --frozen-lockfile
33
working-directory: web
- - run: npm run lint
34
+ - run: bun run lint
35
- - run: npm run build --if-present
36
+ - run: bun run build
37
- - run: npm run e2e:headless
38
+ - run: bun run e2e:headless
39
0 commit comments