Skip to content

Commit

Permalink
wip run tests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
lawrence-forooghian committed Nov 24, 2023
1 parent 4c5bdcc commit 0599f13
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
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

0 comments on commit 0599f13

Please sign in to comment.