Skip to content

Update dependency next to v14.2.7 #464

Update dependency next to v14.2.7

Update dependency next to v14.2.7 #464

Workflow file for this run

name: Node CI
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4.0.3
with:
node-version: 18.x
cache: 'yarn'
- name: yarn install
run: yarn install
- name: Lint server
run: yarn lint:server
- name: Lint client
run: yarn lint:client
- name: Lint CSS
run: yarn lint:css
- name: Install mutool
run: sudo apt-get install -y mupdf-tools
- name: Tests
run: yarn test:ci