-
Notifications
You must be signed in to change notification settings - Fork 0
71 lines (58 loc) · 2.01 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
name: "CI/CD Pipeline"
on:
pull_request:
types: [opened, synchronize, reopened]
release:
types: [published]
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 run 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.event_name == 'release' && github.event.action == 'published'
steps:
- 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
publish:
runs-on: ubuntu-latest
needs: check-version
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup node v22
uses: actions/setup-node@v4
with:
node-version: '22'
registry-url: 'https://registry.npmjs.org'
- name: Installation pacakges
run: npm i
- name: Start build
run: npm run build
- name: Publish Package
run: npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}