Skip to content

[WIP] Run tests in CI #1

[WIP] Run tests in CI

[WIP] Run tests in CI #1

Workflow file for this run

name: Check
on:
pull_request:
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 8.x
uses: actions/setup-node@v4
with:
node-version: 8.x
- run: npm ci
- run: npm run grunt -- test:node
- run: npm run grunt -- test:browser:local