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 e438455 commit 1fdddbcCopy full SHA for 1fdddbc
.github/workflows/ci.yml
@@ -0,0 +1,24 @@
1
+name: Run CI
2
+on:
3
+ push:
4
+ branches:
5
+ - ng
6
+ pull_request:
7
8
9
+
10
+jobs:
11
+ lint:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Checkout repository
15
+ uses: actions/checkout@v4
16
+ - name: Set up Node.js
17
+ uses: actions/setup-node@v4
18
+ with:
19
+ node-version: 22
20
+ cache: yarn
21
+ - name: Install dependencies
22
+ run: yarn install --frozen-lockfile
23
+ - name: Run lint
24
+ run: yarn lint
0 commit comments