primevue-mirror/.github/workflows/node.js.yml

52 lines
1.1 KiB
YAML
Raw Normal View History

2022-12-20 06:32:43 +00:00
name: NodeJS CI
on:
2022-12-20 06:36:25 +00:00
push:
branches: [master]
2023-04-28 14:40:14 +00:00
pull_request:
branches: [master]
2022-12-20 06:32:43 +00:00
permissions:
2022-12-20 06:36:25 +00:00
contents: read
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: |
npm install
- name: Lint Check
if: ${{ success() }}
run: |
npm run format:check
- name: Code Format
if: ${{ success() }}
run: |
npm run format:check
- name: Security Check
if: ${{ success() }}
run: |
npm run security:check
2023-04-28 14:40:14 +00:00
- name: Unit Tests Check
if: ${{ success() }}
run: |
npm run test:unit