Skip to content

Bump typescript from 4.9.5 to 5.0.4 #122

Bump typescript from 4.9.5 to 5.0.4

Bump typescript from 4.9.5 to 5.0.4 #122

Workflow file for this run

name: Continuous Integration
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Test with Node.js v${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
node: ["14", "16", "18"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install dependancies
run: yarn install --frozen-lockfile
- name: Lint the source
run: yarn lint
- name: Transpile into dist
run: yarn build
- name: Run tests
run: yarn test