-
Notifications
You must be signed in to change notification settings - Fork 0
82 lines (68 loc) · 2.24 KB
/
workflow.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
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
76
77
78
79
80
81
82
name: "CI/CD Pipeline"
on:
pull_request:
type: [opened, synchronize, reopened]
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup node v22
uses: actions/setup-node@v4
with:
node-version: '22'
- name: Installation pacakges
run: npm i
- name: Check syntax typescript
run: npm typecheck
- name: Check syntax and rules of Eslint
run: npm run eslint
- name: Start test
run: npm run test
check-version:
runs-on: ubuntu-latest
needs: test
if: github.ref == 'refs/heads/main'
step:
- name: Checkout code
uses: actions/checkout@v4
- name: Check version
run: |
TAG_VERSION=${GITHUB_REF#refs/tags/v}
PACKAGE_VERSION=$(node -p "require('./package.json').version")
if [ "$TAG_VERSION" != "$PACKAGE_VERSION" ]; then
echo "Error: Tag version ($TAG_VERSION) does not match package.json version ($PACKAGE_VERSION)"
exit 1
fi
build:
runs-on: ubuntu-latest
needs: check-version
if: github.ref == 'refs/heads/main'
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup node v22
uses: actions/setup-node@v4
with:
node-version: '22'
- name: Start build
run: npm run build && mv package.json ./dist/
publish:
runs-on: ubuntu-latest
needs: build
if: github.ref == 'refs/heads/main'
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup node v22
uses: actions/setup-node@v4
with:
node-version: '22'
- name: Publish Package
run: cd ./dist && npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}