Skip to content

Feature/csv to string #78

Feature/csv to string

Feature/csv to string #78

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Set node version
- uses: actions/setup-node@v2
- name: Set NPM 7
run: npm install -g npm@7.6.3
# Cache node_modules
- uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }}
- name: Install node modules
run: npm install
- name: Lint
run: npm run lint -- --max-warnings 0
- name: Run tests
run: npm run test