Skip to content

Merge pull request #43 from goenning/changeset-release/main #9

Merge pull request #43 from goenning/changeset-release/main

Merge pull request #43 from goenning/changeset-release/main #9

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ["18.x", "20.x"]
os: [ubuntu-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: "npm"
- name: Install Dependencies
run: npm install
- name: Build
run: npm run build