Skip to content

Merge pull request #381 from ylabonte/dependabot/npm_and_yarn/typedoc… #595

Merge pull request #381 from ylabonte/dependabot/npm_and_yarn/typedoc…

Merge pull request #381 from ylabonte/dependabot/npm_and_yarn/typedoc… #595

Workflow file for this run

name: "CI Workflow"
on:
push:
branches: [ "master", "develop", "feature/*" ]
pull_request:
branches: [ "master", "develop", "feature/*" ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version: [16, 18]
steps:
- run: git config --global core.autocrlf false
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build
- run: npm run lint
- run: npm run test
env:
CI: true