-
Notifications
You must be signed in to change notification settings - Fork 0
75 lines (63 loc) · 1.71 KB
/
Copy pathci.yml
File metadata and controls
75 lines (63 loc) · 1.71 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
67
68
69
70
71
72
73
74
75
name: CI
on:
push:
branches:
- develop
pull_request:
branches:
- develop
- master
workflow_dispatch:
permissions:
contents: read
# One validation run per branch; newer pushes cancel in-flight runs.
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
validate:
name: Lint, test and build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v7
- name: Set up Node.js
uses: actions/setup-node@v7
with:
node-version: "22"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Lint 🧹
run: npm run lint
- name: Test 🧪
run: npm test
- name: Build 🔧
run: npm run build
promote:
name: Promote develop to master
needs: validate
# Only a validated push on develop is promoted, never a pull request.
if: github.event_name == 'push' && github.ref == 'refs/heads/develop'
runs-on: ubuntu-latest
permissions:
contents: write
actions: write
concurrency:
group: promote-master
cancel-in-progress: false
steps:
- name: Checkout full history
uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Fast-forward master to develop
run: |
git push origin ${{ github.sha }}:refs/heads/master
# A push made with GITHUB_TOKEN does not trigger other workflows, so the
# Pages deployment has to be dispatched explicitly on the new master.
- name: Trigger the Pages deployment
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh workflow run deploy.yml --ref master