This repository has been archived by the owner on Nov 22, 2023. It is now read-only.
Bite the bullet and commit build outputs so that they are as accessib… #125
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Test | |
on: [push] | |
jobs: | |
build: | |
runs-on: ${{ matrix.operating-system }} | |
strategy: | |
matrix: | |
# TODO get tests working in Windows | |
# windows-latest | |
operating-system: [ubuntu-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Use Node.js latest | |
uses: actions/setup-node@v3 | |
with: | |
node-version: latest | |
- name: npm install, build, and test | |
run: | | |
npm i | |
npm test | |
env: | |
CI: true |