Skip to content

Merge pull request #6 from rosemary21/feature/documentation #26

Merge pull request #6 from rosemary21/feature/documentation

Merge pull request #6 from rosemary21/feature/documentation #26

Workflow file for this run

name: Frontend CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm run lint
build:
runs-on: ubuntu-latest
needs: lint
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm run build