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 20cdfea commit 7e20276Copy full SHA for 7e20276
.github/workflows/ci.yml
@@ -0,0 +1,24 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
+ branches:
7
+ - master
8
9
+jobs:
10
+ check:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ - uses: pnpm/action-setup@v3
15
+ - uses: actions/setup-node@v4
16
+ with:
17
+ node-version: lts/*
18
+ cache: pnpm
19
20
+ - name: Install
21
+ run: pnpm install
22
23
+ - name: Lint
24
+ run: pnpm run check
.gitignore
@@ -11,3 +11,4 @@ dev/perf/screenshot*
.DS_store
.github/workflows/*
!.github/workflows/package-and-publish.yml
+!.github/workflows/ci.yml
0 commit comments