Skip to content

User List Updates

User List Updates #615

---
name: NodeJS Project Check
on: # yamllint disable-line rule:truthy
pull_request:
branches:
- main
- dev
concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.ref }}
cancel-in-progress: false
jobs:
install-build:
name: NPM Install and Build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install and Build Test
run: |
npm install --legacy-peer-deps
npm run build
env:
CI: true