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 ae59884 commit 7464807Copy full SHA for 7464807
.github/workflows/main.yml
@@ -5,25 +5,12 @@ jobs:
5
build:
6
name: Build and test
7
runs-on: ubuntu-latest
8
-
9
steps:
10
- - name: Checkout repo
11
- uses: actions/checkout@v3
12
13
- - name: Set up Bun
14
- uses: oven-sh/setup-bun@v1
15
- with:
16
- bun-version: latest
17
18
- - name: Install dependencies
19
- run: bun install
20
21
- - name: Build
22
- run: bun run build
23
24
- - name: Test
25
- run: bun test
26
+ - uses: actions/checkout@v3
+ - uses: oven-sh/setup-bun@v1
+ - run: bun install --frozen-lockfile
+ - run: bun run build
+ - run: bun run test
27
# TODO: Upload to Codecov once Bun outputs lcov (https://github.com/oven-sh/bun/issues/4015)
28
# - name: Upload coverage to Codecov
29
# uses: codecov/codecov-action@v1
0 commit comments