We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d15c66f commit 153dc81Copy full SHA for 153dc81
.github/workflows/build.yaml
@@ -0,0 +1,26 @@
1
+name: Build
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
9
+ steps:
10
+ - uses: actions/checkout@v3
11
12
+ - name: Initialize and update submodules
13
+ run: |
14
+ git submodule update --init --recursive
15
16
+ - name: Use Node.js
17
+ uses: actions/setup-node@v3
18
+ with:
19
+ node-version: 18
20
+ cache: "npm"
21
22
+ - name: Install dependencies
23
+ run: npm ci
24
25
+ - name: Build project
26
+ run: npm run build
.github/workflows/lint.yaml
@@ -0,0 +1,14 @@
+name: Lint
+on: [push]
+ ESLint:
+ - name: Install ESLint
+ npm install eslint
+ - name: Run ESLint
+ run: npm run lint
0 commit comments