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 caeb211 commit 3f66e58Copy full SHA for 3f66e58
.github/workflows/main.yml
@@ -20,17 +20,12 @@ jobs:
20
# Steps represent a sequence of tasks that will be executed as part of the job
21
steps:
22
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
23
- - uses: actions/checkout@v3
24
- - uses: actions/setup-node@v3
25
- with:
26
- node-version: "14"
27
- - name: install pnpm
28
- uses: pnpm/action-setup@v2
29
30
- version: 7
31
- - run: pnpm install
32
- - run: pnpm test:coverage
33
- - run: pnpm test:report
+ - uses: actions/checkout@v4
+ - uses: oven-sh/setup-bun@v2
+ with:
+ bun-version: latest
+ - run: bun i
+ - run: bun test --coverage
34
- name: Coveralls
35
uses: coverallsapp/github-action@master
36
with:
0 commit comments