We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3dcd17c + 557912e commit c31d090Copy full SHA for c31d090
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,19 @@
1
+on:
2
+ push:
3
+ pull_request:
4
+
5
+jobs:
6
+ lint:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - name: Code Checkout
10
+ uses: actions/checkout@v4
11
+ - name: Install Node
12
+ uses: actions/setup-node@v4
13
+ with:
14
+ node-version: "lts/*"
15
+ cache: 'npm'
16
+ - name: Install node dependencies
17
+ run: npm ci --timing
18
+ - name: Lint javascript
19
+ run: npm run lint
0 commit comments