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 0dd3ba6 commit 732a4dfCopy full SHA for 732a4df
.github/workflows/ci.yml
@@ -0,0 +1,30 @@
1
+name: Cloud Box Frontend CI
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
8
+ types: [opened, synchronize]
9
10
+jobs:
11
+ linter:
12
+ name: ✅ Validate linter
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - name: ⬇️ Checkout project
17
+ uses: actions/checkout@v3
18
19
+ - name: 🟢 Setup NodeJS 18.x
20
+ uses: actions/setup-node@v3
21
+ with:
22
+ node-version: 18.x
23
+ cache: npm
24
+ cache-dependency-path: './package-lock.json'
25
26
+ - name: 📥 Install dependencies
27
+ run: npm ci
28
29
+ - name: 📑 Check lint
30
+ run: npm run lint
0 commit comments