-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (52 loc) · 1.52 KB
/
ci.yml
File metadata and controls
66 lines (52 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: Continuous Integration Workflow
on:
pull_request:
branches:
- main
push:
branches:
- main
defaults:
run:
shell: bash
jobs:
Tests:
name: 'Run Tests'
runs-on: ubuntu-latest
steps:
# Step 1: Checkout the code
- name: Checkout Code
uses: actions/checkout@v2
# Step 2: Set up Node.js environment
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 20.11.1
cache: 'npm'
# Step 3: Install dependencies & tests
- name: Install Dependency
working-directory: ./
run: |
npm install --legacy-peer-deps
# Step 4: Unit and Intergation Tests
- name: Tests
working-directory: ./
run: |
npm test
Lint:
needs: Tests
name: 'Run linter'
runs-on: ubuntu-latest
steps:
# Step 1: Checkout the code
- name: Checkout Code
uses: actions/checkout@v2
# Step 2: Install dependencies
- name: 'Install Dependencies'
run: npm install --legacy-peer-deps
# Step 3: Run linting and tests
- name: 'Run linter'
run: npm run lint
# Step 4: Build the application
- name: Build Next.js app
run: npm run build