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 54d485c commit 474c728Copy full SHA for 474c728
.github/workflows/test.yml .github/workflows/ci.yml.github/workflows/test.yml renamed to .github/workflows/ci.yml
@@ -1,22 +1,29 @@
1
-name: Test
+name: CI
2
3
on:
4
push:
5
pull_request:
6
7
jobs:
8
- test:
+ ci:
9
if: ${{ !startsWith(github.event.head_commit.message, 'v') }}
10
+
11
runs-on: ubuntu-latest
12
13
steps:
14
- uses: actions/checkout@v2
15
- uses: actions/setup-node@v2
16
with:
- node-version: 15
17
+ node-version: 16
18
+ cache: pnpm
19
registry-url: https://registry.npmjs.org
20
- name: Setup pnpm
- run: npm add -g pnpm
21
+ run: npm add -g pnpm@6
22
- name: Install dependencies
23
run: pnpm install
24
+ - name: Check formatting
25
+ run: pnpm prettier:check-all
26
+ - name: Lint
27
+ run: pnpm eslint:lint-all
28
- name: Test
29
run: pnpm test
0 commit comments