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 abdede1 commit a59cfa0Copy full SHA for a59cfa0
.github/workflows/ci:lint.yml
@@ -0,0 +1,20 @@
1
+name: ci:lint
2
+on:
3
+ - push
4
+ - pull_request
5
+jobs:
6
+ cover:
7
+ name: Continuous integration (code linting)
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: Checkout 🛎️
11
+ uses: actions/checkout@v4
12
+
13
+ - name: Install 📦
14
+ uses: bahmutov/npm-install@v1
15
+ with:
16
+ install-command: yarn --frozen-lockfile --ignore-scripts
17
+ useRollingCache: true
18
19
+ - name: Lint 👕
20
+ run: yarn lint
0 commit comments