2022-12-20 06:32:43 +00:00
|
|
|
name: NodeJS CI
|
|
|
|
|
|
|
|
on:
|
2022-12-20 06:36:25 +00:00
|
|
|
push:
|
|
|
|
branches: [master]
|
2022-12-20 06:32:43 +00:00
|
|
|
|
|
|
|
permissions:
|
2023-04-28 16:19:24 +00:00
|
|
|
contents: write
|
2022-12-20 06:32:43 +00:00
|
|
|
|
|
|
|
jobs:
|
2022-12-20 06:36:25 +00:00
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2024-06-14 14:52:08 +00:00
|
|
|
node-version: [18, 20]
|
2022-12-20 06:36:25 +00:00
|
|
|
|
|
|
|
steps:
|
2024-06-14 14:52:08 +00:00
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
|
|
|
- name: Install pnpm
|
|
|
|
uses: pnpm/action-setup@v4
|
|
|
|
with:
|
2024-06-24 06:42:36 +00:00
|
|
|
version: 9
|
2022-12-20 06:36:25 +00:00
|
|
|
|
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
2024-06-14 14:52:08 +00:00
|
|
|
uses: actions/setup-node@v4
|
2022-12-20 06:36:25 +00:00
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
2024-06-14 14:52:08 +00:00
|
|
|
cache: 'pnpm'
|
2022-12-20 06:36:25 +00:00
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: |
|
2024-06-14 14:52:08 +00:00
|
|
|
pnpm run setup
|
2022-12-20 06:36:25 +00:00
|
|
|
|
|
|
|
- name: Lint Check
|
|
|
|
if: ${{ success() }}
|
|
|
|
run: |
|
2024-06-14 14:52:08 +00:00
|
|
|
pnpm run lint
|
2022-12-20 06:36:25 +00:00
|
|
|
|
2023-04-28 16:19:24 +00:00
|
|
|
- name: Code Format Check
|
|
|
|
id: codeFormatCheck
|
2022-12-20 06:36:25 +00:00
|
|
|
if: ${{ success() }}
|
|
|
|
run: |
|
2024-06-14 14:52:08 +00:00
|
|
|
pnpm run format:check
|
|
|
|
|
2023-04-28 16:19:24 +00:00
|
|
|
- name: Code Format
|
|
|
|
if: always() && steps.codeFormatCheck.outcome == 'failure'
|
|
|
|
run: |
|
|
|
|
npm run format
|
|
|
|
git config user.name "GitHub Actions Bot"
|
|
|
|
git config user.email "<>"
|
|
|
|
git commit -a -m "Code Format"
|
|
|
|
git push
|
|
|
|
|
2022-12-20 06:36:25 +00:00
|
|
|
- name: Security Check
|
|
|
|
if: ${{ success() }}
|
|
|
|
run: |
|
2024-06-14 14:52:08 +00:00
|
|
|
pnpm run security:check
|
2022-12-20 06:36:25 +00:00
|
|
|
|
2023-05-24 09:48:44 +00:00
|
|
|
# - name: Unit Tests Check
|
|
|
|
# if: ${{ success() }}
|
|
|
|
# run: |
|
|
|
|
# npm run test:unit
|