Skip to content

Feature/web app/export button proper file saving #21

Feature/web app/export button proper file saving

Feature/web app/export button proper file saving #21

Workflow file for this run

name: Lint web app
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- main
paths:
- src/web-app/**
pull_request:
branches:
- main
paths:
- src/web-app/**
defaults:
run:
working-directory: src/web-app
jobs:
run-linters:
name: Run linters web app
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 18
- name: Install Node.js dependencies
run: npm ci
- name: Run linters
run: npm run lint