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 bd6a4e1 commit c09db57Copy full SHA for c09db57
1 file changed
.github/workflows/validate.yml
@@ -0,0 +1,22 @@
1
+# This workflow will make sure the code is linted and valid
2
+
3
+name: Validate
4
5
+concurrency:
6
+ cancel-in-progress: true
7
8
+on:
9
+ push:
10
+ branches:
11
+ - '**'
12
+ - '!main'
13
+ # Allows you to run this workflow manually from the Actions tab
14
+ workflow_dispatch:
15
16
+jobs:
17
+ oxlint:
18
+ name: Lint JS
19
+ runs-on: ubuntu-latest
20
+ steps:
21
+ - uses: actions/checkout@v4
22
+ - run: npx --yes oxlint@1.9.0 --deny-warnings # change to the latest release
0 commit comments