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 9376293 commit 7b3f925Copy full SHA for 7b3f925
‎.github/workflows/build.yml‎
@@ -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