Skip to content

Merge pull request #131 from indec-it/refactor/introduction #329

Merge pull request #131 from indec-it/refactor/introduction

Merge pull request #131 from indec-it/refactor/introduction #329

Workflow file for this run

name: Pipeline
on: [push]
jobs:
eslint:
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.9.1
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Install dependencies 🔧
run: npm ci
- name: Run eslint
run: npm run lint
tests:
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.9.1
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Install dependencies 🔧
run: npm ci
- name: Run tests
run: npm run test