Skip to content

build(deps): Bump type-fest from 3.12.0 to 4.11.0 #1479

build(deps): Bump type-fest from 3.12.0 to 4.11.0

build(deps): Bump type-fest from 3.12.0 to 4.11.0 #1479

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read # to fetch code (actions/checkout)
jobs:
build:
runs-on: ${{ matrix.os }}-latest
strategy:
matrix:
os: [ ubuntu, windows ]
node-version: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Use Node.js version ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile --non-interactive
- name: Run linters
run: yarn lint
- name: Run tests
run: yarn test