Skip to content

Add an extra newline between code blocks #63

Add an extra newline between code blocks

Add an extra newline between code blocks #63

Workflow file for this run

name: Build JavaScript
on:
push:
branches:
- main
pull_request:
branches:
- '*'
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest]
node-version: ['12.x', '14.x', '15.x']
include:
- os: macos-latest
node-version: 15.x
- os: windows-latest
node-version: 15.x
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Node ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
npm ci
- name: Lint and test
run: |
npm run lint
npm t