Skip to content

README updated (#61) #265

README updated (#61)

README updated (#61) #265

Workflow file for this run

name: Lint and test
on:
push:
branches-ignore: [main]
jobs:
setup:
name: Setup and install
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: npm
- name: Install dependencies
run: npm ci
- name: Lint scripts
run: npm run lint:scripts
- name: Lint styles
run: npm run lint:styles
- name: Test application
run: npm run test