Skip to content

fix(ci): fix publish (#27) #23

fix(ci): fix publish (#27)

fix(ci): fix publish (#27) #23

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint_and_test:
runs-on: ubuntu-latest
name: Linting & Tests
steps:
- name: Cloning repo
uses: actions/checkout@v2
- name: Setup Node.js
id: setup-node
uses: actions/setup-node@v2
with:
node-version-file: .nvmrc
cache: npm
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Run tests
run: npm run test