Skip to content

new struct

new struct #41

Workflow file for this run

name: CI
on:
push:
branches:
- master
- main
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
node_version: [16]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v3
with:
node_version: ${{ matrix.node_version }}
- name: run eslint
run: |
cd ./web
npm install
npm rebuild node-sass
npm run lint