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 97b5a79 commit 1317c02Copy full SHA for 1317c02
.github/workflows/ci.yml
@@ -11,15 +11,12 @@ jobs:
11
defaults:
12
run:
13
working-directory: ./
14
- strategy:
15
- matrix:
16
- node: [20, 22]
17
steps:
18
- uses: actions/checkout@v4
19
- - uses: actions/setup-node@v4
+ - uses: oven-sh/setup-bun@v1
20
with:
21
- node-version: ${{ matrix.node }}
22
- - run: npm install
23
- - run: npx playwright install --with-deps
24
- - run: npm run build
25
- - run: npm run test
+ bun-version: 1.2.8
+ - run: bun install
+ - run: bunx playwright install --with-deps
+ - run: bun run build
+ - run: bun run test
.gitignore
@@ -1,7 +1,7 @@
1
node_modules
2
-bun.lock
3
.wrangler
4
.mf
5
*.tgz
6
dist
7
.DS_Store
+package-lock.json
0 commit comments