Skip to content

Commit 1fdddbc

Browse files
committed
Add CI workflow on GitHub Actions
1 parent e438455 commit 1fdddbc

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/ci.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Run CI
2+
on:
3+
push:
4+
branches:
5+
- ng
6+
pull_request:
7+
branches:
8+
- ng
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

Comments
 (0)