Skip to content

TCS-1596 chore: bump peer deps so they are not restricted to 0.74.x only #120

TCS-1596 chore: bump peer deps so they are not restricted to 0.74.x only

TCS-1596 chore: bump peer deps so they are not restricted to 0.74.x only #120

Workflow file for this run

name: Node CI
on:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
node: ['18']
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- name: NPM Install
run: npm ci --network-concurrency 1
- name: Linting
run: npm run lint