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