-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (41 loc) · 1.18 KB
/
ci.yml
File metadata and controls
52 lines (41 loc) · 1.18 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
name: Frontend CI
on:
push:
branches: ["developV2"]
pull_request:
branches: ["developV2"]
permissions:
contents: read
pull-requests: write
concurrency:
group: frontend-ci-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
cache: "npm"
cache-dependency-path: package-lock.json
- name: Install Dependencies
run: npm ci
- name: Run Linter
run: npm run lint
- name: Run Tests
run: npm test
- name: Build Next.js App
run: npm run build
- name: Auto-merge PR
if: github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'automerge')
env:
GH_TOKEN: ${{ secrets.MY_PAT_TOKEN }}
run: |
gh pr merge "${{ github.event.pull_request.html_url }}" \
--squash \
--subject "${{ github.event.pull_request.title }}" \
--body "Auto-merged by bot after CI passed. (Label: automerge)"