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 d06e6b2 commit 49a9b63Copy full SHA for 49a9b63
.github/workflows/lint.yml
@@ -0,0 +1,12 @@
1
+name: Lint javascript
2
+
3
+on: push
4
5
+jobs:
6
+ js-lint:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v2
10
+ - uses: actions/setup-node@v1
11
+ - run: yarn
12
+ - run: yarn lint
.github/workflows/test.yml
+name: Test javascript
+ js-test:
+ - run: yarn test
0 commit comments