Skip to content

GH-19: Migrate away from using Grunt for internal linting (resolves #19). #40

GH-19: Migrate away from using Grunt for internal linting (resolves #19).

GH-19: Migrate away from using Grunt for internal linting (resolves #19). #40

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
timeout-minutes: 20
strategy:
matrix:
node-version: [16.x]
steps:
- name: Prepare git
run: git config --global core.autocrlf false
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install Node.js dependencies
run: npm install
- name: Code linter
run: npm run lint