showdown/.github/workflows/node.win.yml
Devyn S 735c5d2a55
Chore/update ci (#876)
* chore(ci): update CI node version to match node supported versions

* chore(ci): appveyor only supports up to node 16.x

* chore(ci): travis CI is not longer free/working; remove it

* chore(ci): add git workflow to replace travisCI linux builds

* doc(readme): add back in a badge for linux CI

* chore(ci): add windows to CI

* chore(ci): remove appveyor in favor of github actions

* doc(readme): update info about node supportability
2021-11-14 12:58:28 -07:00

31 lines
837 B
YAML

# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node Windows CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x, 17.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm test