Skip to content

Commit 35511b2

Browse files
committed
Revert "move to pnpm test"
This reverts commit fa7d34d.
1 parent a9893da commit 35511b2

File tree

5 files changed

+4157
-7075
lines changed

5 files changed

+4157
-7075
lines changed

.github/workflows/tests.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: Build and Test
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ${{ matrix.operating-system }}
8+
9+
strategy:
10+
matrix:
11+
node-version: [16.x, 17.x]
12+
operating-system: [ubuntu-latest]
13+
14+
steps:
15+
- name: Checkout repo
16+
uses: actions/checkout@v2
17+
with:
18+
fetch-depth: 2
19+
20+
- uses: pnpm/[email protected]
21+
22+
- name: Setup Node.js environment ${{ matrix.node-version }}
23+
uses: actions/setup-node@v3
24+
with:
25+
node-version: ${{ matrix.node-version }}
26+
cache: pnpm
27+
28+
- name: Install dependencies
29+
run: pnpm install
30+
31+
- name: Install dependencies
32+
run: pnpm install
33+
34+
- name: Build
35+
run: pnpm run build
36+
37+
- name: Test
38+
run: pnpm run test
39+
env:
40+
CI: true
41+
42+
- name: Typecheck
43+
run: pnpm run typecheck

0 commit comments

Comments
 (0)