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

50 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]
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:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
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-05 09:06:43 +00:00
#- name: Test
# if: ${{ success() }}
# run: |
# npm run test:unit