Skip to content

Commit 3669b7c

Browse files
committed
Try to improve CI
1 parent 027204a commit 3669b7c

1 file changed

Lines changed: 17 additions & 18 deletions

File tree

.github/workflows/check_types.yml

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,23 @@
1-
name: 'Check types'
1+
name: Check types
22

33
on:
4-
- 'push'
5-
- 'pull_request'
4+
- push
5+
- pull_request
66

77
jobs:
88
build:
9-
runs-on: 'ubuntu-latest'
9+
runs-on: ubuntu-latest
1010
steps:
11-
- uses: 'actions/checkout@v4'
12-
- name: 'Install pnpm'
13-
uses: 'pnpm/action-setup@v4'
14-
with:
15-
version: 9
16-
- name: 'Use Node'
17-
uses: 'actions/setup-node@v4'
18-
with:
19-
node-version: 20
20-
cache: 'pnpm'
21-
cache-dependency-path: '**/pnpm-lock.yaml'
22-
- name: 'Check types'
23-
working-directory: ./backend
24-
run: pnpm install && pnpm check
11+
- uses: actions/checkout@v4
12+
- name: Install pnpm
13+
uses: pnpm/action-setup@v4
14+
with:
15+
version: 9
16+
- name: Use Node
17+
uses: actions/setup-node@v4
18+
with:
19+
node-version: 20
20+
cache: pnpm
21+
cache-dependency-path: **/pnpm-lock.yaml
22+
- name: Check types
23+
run: pnpm install && pnpm check

0 commit comments

Comments
 (0)