Skip to content

add scripts to execution #48

add scripts to execution

add scripts to execution #48

Workflow file for this run

name: Node CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 17.x, 18.x, 19.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js with ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install
run: make install
- name: Run linter
run: make lint