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

fix(core): remove unknown compiler option suppressOutputPathCheck #656

fix(core): remove unknown compiler option suppressOutputPathCheck

fix(core): remove unknown compiler option suppressOutputPathCheck #656

Workflow file for this run

name: Build and Test
on:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
analyse:
if: ${{ github.actor != 'dependabot[bot]' }}
name: Build
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install latest NPM
run: npm i -g npm@latest
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Run tests
run: npm run test