Skip to content

chore: move to npm

chore: move to npm #51

Workflow file for this run

name: Test
on:
push:
branches:
- '**'
- '!main'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- name: Install Dependencies
run: npm install
- name: Lint Code Base
run: npm lint
- name: Test
run: npm test