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:
|
|
|
|
node-version: [16.x, 18.x]
|
|
|
|
|
|
|
|
steps:
|
2023-04-28 14:40:14 +00:00
|
|
|
- uses: actions/checkout@v3
|
2022-12-20 06:36:25 +00:00
|
|
|
|
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
2023-04-28 14:40:14 +00:00
|
|
|
uses: actions/setup-node@v3
|
2022-12-20 06:36:25 +00:00
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
cache: 'npm'
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: |
|
2024-06-13 10:43:41 +00:00
|
|
|
npm run setup
|
2022-12-20 06:36:25 +00:00
|
|
|
|
|
|
|
- name: Lint Check
|
|
|
|
if: ${{ success() }}
|
|
|
|
run: |
|
2023-04-28 16:19:24 +00:00
|
|
|
npm 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: |
|
|
|
|
npm 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: |
|
|
|
|
npm run security:check
|
|
|
|
|
2023-05-24 09:48:44 +00:00
|
|
|
# - name: Unit Tests Check
|
|
|
|
# if: ${{ success() }}
|
|
|
|
# run: |
|
|
|
|
# npm run test:unit
|