-
Notifications
You must be signed in to change notification settings - Fork 1
48 lines (39 loc) · 1.02 KB
/
backend-build.yml
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
name: Backend Build Check
on:
push:
branches:
- main
paths:
- "backend/**" # Only trigger on changes within this folder
- ".github/**"
pull_request:
paths:
- "backend/**" # Only trigger on changes within this folder
- ".github/**"
workflow_dispatch:
jobs:
backend-build-check:
name: Backend Build Check
runs-on: ubuntu-latest
# Cache dependencies to speed up the workflow
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "20"
- name: Install Yarn
run: npm install --global yarn
- name: Install dependencies
working-directory: ./backend
run: yarn install
- name: Run tests
working-directory: ./backend
run: yarn test
- name: Run lint
working-directory: ./backend
run: yarn lint
- name: Run build
working-directory: ./backend
run: yarn build