Feature/csv to string #78
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |