Skip to content

Bump immutable from 5.1.6 to 5.1.9 (#35) #73

Bump immutable from 5.1.6 to 5.1.9 (#35)

Bump immutable from 5.1.6 to 5.1.9 (#35) #73

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: '20'
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Lint
run: npm run lint
build:
strategy:
matrix:
node_version: [18, 20, 22]
name: Test - node ${{ matrix.node_version }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node_version }}
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Test
run: npm run test