We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ec50f8 commit 9bcf05fCopy full SHA for 9bcf05f
.github/workflows/ci.yml
@@ -10,8 +10,8 @@ on:
10
- cron: '0 0 * * *'
11
12
jobs:
13
- test:
14
- name: Lint & Test
+ lint:
+ name: Lint
15
runs-on: ubuntu-latest
16
steps:
17
- uses: actions/checkout@v4
@@ -22,6 +22,18 @@ jobs:
22
cache: pnpm
23
- run: pnpm install --frozen-lockfile
24
- run: pnpm lint
25
+
26
+ test:
27
+ name: Test
28
+ runs-on: ubuntu-latest
29
+ steps:
30
+ - uses: actions/checkout@v4
31
+ - uses: pnpm/action-setup@v4
32
+ - uses: actions/setup-node@v4
33
+ with:
34
+ node-version: 18
35
+ cache: pnpm
36
+ - run: pnpm install --frozen-lockfile
37
- run: pnpm test
38
- uses: sarisia/actions-status-discord@v1
39
if: ${{ failure() && (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch') }}
0 commit comments