Skip to content

Commit 0567a1b

Browse files
authored
ci: add build job (#773)
1 parent bf9b414 commit 0567a1b

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

.github/workflows/ci.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -41,24 +41,24 @@ jobs:
4141
tsc: true
4242
prettier: true
4343

44-
# Lint:
45-
# strategy:
46-
# matrix:
47-
# node: ['18']
44+
Build:
45+
strategy:
46+
matrix:
47+
node: ['20']
4848

49-
# runs-on: ubuntu-latest
50-
# steps:
51-
# - uses: actions/checkout@v3
49+
runs-on: ubuntu-latest
50+
steps:
51+
- uses: actions/checkout@v2
5252

53-
# - uses: pnpm/action-setup@v2
54-
# with:
55-
# version: 8.1.0
53+
- uses: pnpm/action-setup@v2.2.3
54+
with:
55+
version: 8.14.0
5656

57-
# - uses: actions/setup-node@v3
58-
# with:
59-
# node-version: 18.x
60-
# cache: pnpm
57+
- name: Set up Node
58+
uses: actions/setup-node@v2
59+
with:
60+
node-version: ${{ matrix.node }}
61+
cache: pnpm
6162

62-
# - run: pnpm install --frozen-lockfile
63-
# - run: pnpm run lint
64-
# - run: pnpm run check
63+
- run: pnpm install --frozen-lockfile
64+
- run: pnpm build

0 commit comments

Comments
 (0)