Skip to content

update dependency versions; migrate from npm to yarn #73

update dependency versions; migrate from npm to yarn

update dependency versions; migrate from npm to yarn #73

Workflow file for this run

name: Verify
on:
push:
branches: [ main, dev ]
pull_request:
branches: [ main, dev ]
jobs:
test:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
node-version: [ 14.x, 16.x, 18.x ]
runs-on: ${{ matrix.os }}
steps:
- name: Set git to use LF
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run lint
- run: npm test