Skip to content

feature: setup linting #17

feature: setup linting

feature: setup linting #17

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup NodeJS
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm install --frozen-lockfile
- name: Lint and Unit Test
run: |
npm run lint
npm run test:unit