Skip to content

version 1.1.0-SNAPSHOT #6

version 1.1.0-SNAPSHOT

version 1.1.0-SNAPSHOT #6

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Node.js CI
on:
pull_request:
branches: ["branch-test"]
types: [closed]
jobs:
build:
runs-on: ${{matrix.os}}
strategy:
matrix:
node: [17.x, 18.x]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: ${{matrix.node}}
- name: npm install
run: npm i
- name: Run Tests
run: npm run test:tabular:ci
- name: Run Lint
run: npm run lint:tabular:ci