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 ff9a0e6 commit 971caa0Copy full SHA for 971caa0
.github/actions/prepare/action.yml
@@ -4,7 +4,6 @@ description: Prepares the repo for a typical CI job
4
runs:
5
using: "composite"
6
steps:
7
- - uses: actions/checkout@v3
8
- uses: actions/setup-node@v3
9
with:
10
node-version: "18"
.github/workflows/lint.yml
@@ -0,0 +1,15 @@
1
+name: Lint
2
+
3
+on:
+ push:
+ branches:
+ - main
+ pull_request:
+jobs:
+ lint:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v3
14
+ - uses: ./.github/actions/prepare
15
+ - run: yarn lint
0 commit comments