Skip to content

fix(deps): update dependency ts-morph to v23 #324

fix(deps): update dependency ts-morph to v23

fix(deps): update dependency ts-morph to v23 #324

Workflow file for this run

name: Test Package
on:
pull_request:
branches:
- '**'
concurrency:
group: tests-${{ github.ref }}
cancel-in-progress: true
jobs:
test_matrix:
strategy:
fail-fast: true
matrix:
version:
- 20
name: test and build package (node ${{ matrix.version }})
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.version }}
- run: npm ci
- run: npm run lint
- run: npm run test:unit
- run: npm run build
test_all:
if: ${{ always() }}
runs-on: ubuntu-latest
name: Test (matrix)
needs: test_matrix
steps:
- name: Check test matrix status
if: ${{ needs.test_matrix.result != 'success' }}
run: exit 1