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 4cfc7e8 commit 1ccf85bCopy full SHA for 1ccf85b
.github/workflows/tests.yml
@@ -4,9 +4,11 @@ on:
4
push:
5
branches:
6
- develop
7
+ - main
8
pull_request:
9
10
11
12
13
jobs:
14
test:
@@ -16,16 +18,13 @@ jobs:
16
18
- name: Checkout code
17
19
uses: actions/checkout@v3
20
- - name: Set up Node.js
- uses: actions/setup-node@v3
21
- with:
22
- node-version: '20'
23
-
24
- - name: Install pnpm
25
- run: npm install -g pnpm
+ - name: Set up Bun
+ run: |
+ curl -fsSL https://bun.sh/install | bash
+ echo "${HOME}/.bun/bin" >> $GITHUB_PATH
26
27
- name: Install dependencies
28
- run: pnpm install
+ run: bun install
29
30
- name: Run tests
31
- run: pnpm test
+ run: bun test
0 commit comments