We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a33b8e7 commit 60c9743Copy full SHA for 60c9743
.github/workflows/build.yml
@@ -24,4 +24,21 @@ jobs:
24
- name: Install dependencies
25
run: npm i
26
- name: Run ESLint
27
- run: npm run lint
+ run: npm run lint
28
+ build:
29
+ name: Build the project
30
+ runs-on: ubuntu-latest
31
+ permissions:
32
+ contents: read
33
+ steps:
34
+ - name: Set up NodeJS LTS
35
+ uses: actions/setup-node@v6
36
+ with:
37
+ node-version: 'lts/*'
38
+ - name: Checkout repository
39
+ uses: actions/checkout@v6
40
+ - name: Install dependencies
41
+ run: npm i
42
+ - name: Build the project
43
+ run: npm run build
44
+
0 commit comments