We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb33c70 commit e0fe030Copy full SHA for e0fe030
.github/workflows/ci.yml
@@ -6,25 +6,20 @@ jobs:
6
runs-on: ubuntu-latest
7
strategy:
8
matrix:
9
- node-env: [ 'development', 'production' ]
+ node-env: ["development", "production"]
10
env:
11
- NODE_ENV: ${{ matrix.node-env }}
+ NODE_ENV: ${{ matrix.node-env }}
12
steps:
13
- - name: Checkout
+ - name: Checkout
14
uses: actions/checkout@v4
15
16
- - name: Setup Node
17
- uses: actions/[email protected]
18
- with:
19
- node-version: 16
+ - name: Setup Bun
+ uses: oven-sh/setup-bun@v1
20
21
- - run: yarn install
+ - run: bun install
22
23
- - run: yarn build
24
-
25
- - run: yarn lint
+ - run: bun lint
26
if: ${{ matrix.node-env == 'development' }}
27
28
- - run: yarn test
+ - run: bun test
29
30
0 commit comments