Skip to content

Merge branch 'master' of github.com:tardis-dev/tardis-machine #94

Merge branch 'master' of github.com:tardis-dev/tardis-machine

Merge branch 'master' of github.com:tardis-dev/tardis-machine #94

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
ci:
name: CI
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node.js v${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies And Compile TS
run: npm install
- name: Check Code Format
run: npm run check-format