Skip to content

Commit 7b3f925

Browse files
committed
👷 add CI for generate.js
1 parent 9376293 commit 7b3f925

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: 'Build'
2+
3+
on: [pull_request, push]
4+
5+
permissions:
6+
contents: read
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v3
13+
- uses: ljharb/actions/node/install@main
14+
name: 'nvm install lts/* && npm install'
15+
- run: npm run build
16+
# we could add this to package.json test script but it potentially modifies the README
17+
# for now let's just make sure it runs without error in CI

0 commit comments

Comments
 (0)