Skip to content
This repository has been archived by the owner on Dec 25, 2023. It is now read-only.

update node + dependencies #1322

update node + dependencies

update node + dependencies #1322

Workflow file for this run

name: Node.js CI
on:
push:
paths-ignore:
- "**/*.md"
pull_request:
paths-ignore:
- "**/*.md"
jobs:
build:
runs-on: ubuntu-latest
if: (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository)
strategy:
matrix:
node-version: [14, 16, 18, 20]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm install
- name: Check Style
run: npm run check-formatting
- name: Compile Front-end
run: npm run compile