Skip to content

Commit f49dbd4

Browse files
committed
☕ Run build-npm in CI test
1 parent ec646eb commit f49dbd4

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/test.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: Test
22

33
env:
44
DENO_VERSION: 1.x
5+
NODE_VERSION: 16.x
56

67
on:
78
schedule:
@@ -50,3 +51,17 @@ jobs:
5051
run: |
5152
deno bench
5253
timeout-minutes: 5
54+
55+
build-npm:
56+
runs-on: ubuntu-latest
57+
steps:
58+
- uses: actions/checkout@v3
59+
- uses: denoland/setup-deno@v1
60+
with:
61+
deno-version: ${{ env.DENO_VERSION }}
62+
- uses: actions/setup-node@v3
63+
with:
64+
node-version: ${{ env.NODE_VERSION }}
65+
registry-url: "https://registry.npmjs.org"
66+
- name: Build
67+
run: deno task build-npm

0 commit comments

Comments
 (0)