Skip to content

Commit

Permalink
Add Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ingalls committed Sep 4, 2024
1 parent 177c489 commit 4579ca5
Show file tree
Hide file tree
Showing 5 changed files with 919 additions and 1,393 deletions.
54 changes: 0 additions & 54 deletions .eslintrc.json

This file was deleted.

36 changes: 36 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Test

on:
push:
branches:
- master
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review

jobs:
test:
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
with:
ref: ${{github.event.pull_request.head.sha || github.sha}}

- uses: actions/setup-node@v4
with:
node-version: 22
registry-url: https://registry.npmjs.org/

- name: Install
run: npm install

- name: Lint
run: npm run lint

- name: Test
run: npm test
Loading

0 comments on commit 4579ca5

Please sign in to comment.