Skip to content

Merge pull request #51 from falconlee236/fix/change-github-target-jen… #17

Merge pull request #51 from falconlee236/fix/change-github-target-jen…

Merge pull request #51 from falconlee236/fix/change-github-target-jen… #17

Workflow file for this run

# 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