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 bb64289 commit 588b30cCopy full SHA for 588b30c
.github/workflows/build.yml
@@ -0,0 +1,13 @@
1
+name: Build
2
+on:
3
+ push:
4
+ pull_request:
5
+
6
+jobs:
7
+ build:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v3
11
+ - uses: actions/setup-node@v3
12
+ - run: npm ci
13
+ - run: npm run build
.github/workflows/lint.yml
+name: Lint
+ eslint:
+ - run: npm run lint -- --max-warnings=0
0 commit comments