Skip to content

Merge pull request #448 from core-ds/dependabot/npm_and_yarn/serializ… #345

Merge pull request #448 from core-ds/dependabot/npm_and_yarn/serializ…

Merge pull request #448 from core-ds/dependabot/npm_and_yarn/serializ… #345

Workflow file for this run

name: Run tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x, 24.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: yarn install and test
run: |
yarn install --immutable
yarn run test
env:
CI: true
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 22.x
uses: actions/setup-node@v4
with:
node-version: '22.x'
- name: yarn install and lint
run: |
yarn install --immutable
yarn run lint
env:
CI: true