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 4ad8a82 commit 8644004Copy full SHA for 8644004
.github/workflows/build.yml
@@ -4,9 +4,11 @@ on:
4
push:
5
branches:
6
- main
7
+ - develop
8
pull_request:
9
10
11
12
13
jobs:
14
build:
@@ -22,11 +24,13 @@ jobs:
22
24
node-version: 18
23
25
cache: 'pnpm'
26
- - name: Install pnpm
- run: npm install -g pnpm
27
+ - name: Set up pnpm
28
+ uses: pnpm/action-setup@v3
29
+ with:
30
+ version: 8
31
32
- name: Install Dependencies
- run: pnpm install
33
+ run: pnpm install --frozen-lockfile
34
35
- name: Run Linting
36
run: pnpm run lint
0 commit comments