Skip to content

Bump cookie and youch #28

Bump cookie and youch

Bump cookie and youch #28

Workflow file for this run

name: Run tests
on:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v3
with:
cache: 'npm'
- run: npm ci
- run: npm run lint
check-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v3
with:
cache: 'npm'
- run: npm ci
- run: npm run check-format
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v3
with:
cache: 'npm'
- run: npm ci
- run: npm run test