Skip to content

merged 'ed/build-improvements' #60

merged 'ed/build-improvements'

merged 'ed/build-improvements' #60

Workflow file for this run

name: CI
on:
push:
branches:
- '**'
tags-ignore:
- '**'
pull_request:
branches:
- '**'
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest]
node-version: [14.x, 16.x, 18.x]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build
- run: npm run lint
if: matrix.os == 'ubuntu-latest'
- run: npm run format:check
if: matrix.os == 'ubuntu-latest'
- run: npm test