Skip to content

Bump typescript from 5.2.2 to 5.4.5 #50

Bump typescript from 5.2.2 to 5.4.5

Bump typescript from 5.2.2 to 5.4.5 #50

Workflow file for this run

name: Lint and Test
on: [push, workflow_dispatch]
jobs:
build:
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['14.x', '16.x']
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Disable Auto CRLF
run: git config --global core.autocrlf false
- name: Checkout repo
uses: actions/checkout@v2
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- name: Install deps
run: yarn install --frozen-lockfile
- name: Build
run: yarn build
- name: Lint
run: yarn lint
- name: Test
run: yarn test --ci --maxWorkers=2