Skip to content

Merge pull request #88 from amb26/KETTLE-94 #75

Merge pull request #88 from amb26/KETTLE-94

Merge pull request #88 from amb26/KETTLE-94 #75

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
defaults:
run:
shell: bash
jobs:
tests:
runs-on: ${{ matrix.os }}
timeout-minutes: 10
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
node-version: [16.x, 18.x]
steps:
- name: Prepare git
run: git config --global core.autocrlf false
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install Node.js dependencies
run: npm ci
- name: Code linter
run: npm run lint
- name: Tests
run: npm run test