Skip to content

Merge pull request #1 from Harry-Hopkinson/renovate/configure #13

Merge pull request #1 from Harry-Hopkinson/renovate/configure

Merge pull request #1 from Harry-Hopkinson/renovate/configure #13

Workflow file for this run

name: Node.js CI
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
build:
strategy:
matrix:
os-type: ["ubuntu-latest", "windows-latest", "macos-latest"]
node-version: [18.x]
runs-on: ${{ matrix.os-type }}
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
cache: "npm"
- name: Install dependencies
run: npm install
- name: Run build
run: npm run build