Skip to content
This repository has been archived by the owner on May 7, 2024. It is now read-only.

Bump typescript from 4.1.3 to 5.2.2 #115

Bump typescript from 4.1.3 to 5.2.2

Bump typescript from 4.1.3 to 5.2.2 #115

Workflow file for this run

---
name: Unit Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
name: Unit Tests
strategy:
matrix:
node-version: [15.x, 14.x, 12.x, 10.x]
steps:
- name: Checkout Repository
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
always-auth: false
node-version: ${{ matrix.node-version }}
- name: Run npm install
run: npm install
- name: Run Tests
run: npm run test:unit
env:
CI: true
KNEX_TEST_TIMEOUT: 60000