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 814bfbc commit b789c33Copy full SHA for b789c33
.github/workflows/tests.yml
@@ -22,15 +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: corepack enable
- - run: corepack prepare pnpm@latest-8 --activate
- - 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