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.
2 parents 4f15b1a + b789c33 commit f286408Copy full SHA for f286408
.github/workflows/tests.yml
@@ -22,13 +22,21 @@ jobs:
22
runs-on: ${{ matrix.os }}
23
24
steps:
25
- - uses: actions/checkout@v3
+ - name: Checkout repository
26
+ uses: actions/checkout@v3
27
+ - name: Install PNPM
28
+ uses: pnpm/action-setup@v2
29
+ with:
30
+ version: 8
31
- name: Use Node.js ${{ matrix.node-version }}
32
uses: actions/setup-node@v3
33
with:
34
node-version: ${{ matrix.node-version }}
35
cache: 'pnpm'
- - run: pnpm install
- - run: pnpm lint
- - run: pnpm build
36
+ - name: Install dependencies
37
+ run: pnpm install
38
+ - name: Run Linters
39
+ run: pnpm lint
40
+ - name: Build Library
41
+ run: pnpm build
42
# - run: pnpm test
0 commit comments