Skip to content

build(deps): Bump type-fest from 3.6.1 to 3.7.0 #2643

build(deps): Bump type-fest from 3.6.1 to 3.7.0

build(deps): Bump type-fest from 3.6.1 to 3.7.0 #2643

Workflow file for this run

name: "ci"
on:
pull_request:
push:
branches:
- master
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '14'
- run: npm ci --no-progress
- run: npm run build
- run: npm run lint
test:
name: Test using Node.js ${{ matrix.node }} running on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: [14, 16, 18]
# TODO: Add windows-latest
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: npm ci --no-progress
- run: npm run build
- run: npm run test:ci