-
Notifications
You must be signed in to change notification settings - Fork 4
62 lines (56 loc) · 1.82 KB
/
customCI.yaml
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
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: CI
on:
push:
branches: ['main']
pull_request_target:
branches: ['main']
jobs:
build:
permissions: write-all
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: create .env.local with aws credentials
env:
AWS_S3_REGION: ap-northeast-2
AWS_S3_BUCKET: puangbe
run: |-
cat > .env.local << EOF
AWS_S3_REGION=$AWS_S3_REGION
AWS_S3_BUCKET=$AWS_S3_BUCKET
AWS_S3_ACCESS_ID=${{ secrets.AWS_S3_ACCESS_ID }}"
AWS_S3_ACCESS_KEY=${{ secrets.AWS_S3_ACCESS_KEY }}"
EOF
- name: npm package install
run: npm ci
- name: run eslint
run: npm run lint
- name: run build process
run: npm run build --if-present
- name: Analyze bundle sizes
uses: transferwise/actions-next-bundle-analyzer@v2
with:
comment-strategy: 'always'
create-issue: false
- name: Delete merged branch
uses: SvanBoxel/[email protected]
with:
delete_closed_pr: false
- name: Trigger Jenkins Multiple Jobs
uses: appleboy/[email protected]
with:
# jenkins base url
url: ${{secrets.JENKINS_URL}}
# jenkins username
user: sangylee
# jenkins api token
token: ${{secrets.JENKINS_API_TOKEN}}
# jenkins job
job: puang-web