Skip to content

Typescript excludes node_modules by default #12

Typescript excludes node_modules by default

Typescript excludes node_modules by default #12

Workflow file for this run

# This workflow builds the package and runs the tests when master branch is updated.
name: Build
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
- run: npm test --if-present