Skip to content

Commit

Permalink
Merge pull request #187 from VisLab/spec-tester
Browse files Browse the repository at this point in the history
Separated the spec-tests into separate github action
  • Loading branch information
VisLab authored Sep 5, 2024
2 parents 36da963 + 3e0527b commit c6f7e90
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 15 deletions.
15 changes: 0 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,18 +44,3 @@ jobs:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageCommand: ./node_modules/.bin/jest --coverage --testPathIgnorePatterns=spec_tests

SpecTests:
runs-on: ubuntu-latest

steps:
- name: Check out the code
uses: actions/checkout@v4
- name: Set up with Node.js LTS
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Download dependencies
run: npm ci
- name: Test with Node.js LTS
run: npm run testSpecs
23 changes: 23 additions & 0 deletions .github/workflows/jsontests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: jsontests

on:
push:
branches: [master]
pull_request:
branches: [master]

jobs:
SpecTests:
runs-on: ubuntu-latest

steps:
- name: Check out the code
uses: actions/checkout@v4
- name: Set up with Node.js LTS
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Download dependencies
run: npm ci
- name: Test with Node.js LTS
run: npm run testSpecs

0 comments on commit c6f7e90

Please sign in to comment.