Skip to content

Merge pull request #290 from unipept/update-dependencies-967528356968… #598

Merge pull request #290 from unipept/update-dependencies-967528356968…

Merge pull request #290 from unipept/update-dependencies-967528356968… #598

Workflow file for this run

name: CI
on: [push]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 24.x
cache: yarn
- name: Install dependencies
run: |
yarn install
- name: Lint
run: |
yarn lint
- name: Type check
run: |
yarn typecheck
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x, 24.x]
steps:
- uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- name: Install dependencies
run: |
yarn install
- name: Test
run: |
yarn test