Skip to content

build(deps-dev): bump the typescript-eslint group with 2 updates (#1370) #2705

build(deps-dev): bump the typescript-eslint group with 2 updates (#1370)

build(deps-dev): bump the typescript-eslint group with 2 updates (#1370) #2705

Workflow file for this run

name: Node CI
on:
push:
branches: master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 19.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm i -g npm
npm cache clean --force
npm ci
npm run build
npm test -- --forceExit #https://github.com/facebook/jest/issues/9982#issuecomment-758110298
env:
CI: true
- name: Check spelling
uses: crate-ci/typos@master