We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 098b732 commit c42b0d7Copy full SHA for c42b0d7
.github/workflows/build-and-test.yml
@@ -10,29 +10,22 @@ jobs:
10
build:
11
runs-on: ubuntu-latest
12
13
- strategy:
14
- matrix:
15
- node-version: [18.x]
16
-
17
steps:
18
- uses: actions/checkout@v4
19
20
- - name: Use Node.js ${{ matrix.node-version }}
21
- uses: actions/setup-node@v3
22
- with:
23
- node-version: ${{ matrix.node-version }}
+ - uses: oven-sh/setup-bun@v2
24
25
- name: Install dependencies
26
- run: npm install
+ run: bun install --frozen-lockfile
27
28
- name: Codegen
29
- run: npm run generate:graphql
+ run: bun run generate:graphql
30
31
- name: Run the tests
32
- run: npm test
+ run: bun run test
33
34
- name: Build
35
- run: npm run build
+ run: bun run build
36
env:
37
CI: false
38
0 commit comments