Files
codeql-action/node_modules/github-linguist/.github/workflows/ci.yml
Andrew Eisenberg b29bf7b05a Upgrade linguist dependency
This version changes how it counts python heredoc. All heredoc is
counted as code.
2021-08-25 11:15:45 -07:00

35 lines
672 B
YAML

name: Node CI
on:
- push
- workflow_dispatch
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node_version: [12.x, 14.x]
os: [ubuntu-latest, windows-latest]
steps:
- run: git config --global core.autocrlf false
if: matrix.os == 'windows-latest'
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node_version }}
- run: echo ${{github.ref}}
- run: npm ci
- run: npm run lint
- run: npm run test
env:
PROGRESS: none
NODE_ENV: test