Skip to content

Refactor npm install command and remove unused code #29

Refactor npm install command and remove unused code

Refactor npm install command and remove unused code #29

Workflow file for this run

name: Lint & Test
# Trigger the workflow on push or pull request commits only
on:
push:
branches:
- master
tags-ignore:
- '**'
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- run: make lint
- run: make test