[FIX] CD target github url 과 github branch 변경 #10
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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: | |
branches: ['main'] | |
jobs: | |
build: | |
permissions: | |
actions: write | |
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 | |