Skip to content

Commit

Permalink
Merge pull request #67 from Chia-Network/develop
Browse files Browse the repository at this point in the history
Release 1.0.27
  • Loading branch information
TheLastCicada authored Jan 9, 2024
2 parents a8a9089 + d8d1410 commit 6b157c1
Show file tree
Hide file tree
Showing 5 changed files with 4,388 additions and 452 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Integration Tests

on:
workflow_dispatch:
# push:
# tags:
# - '**'
# pull_request:
# branches:
# - '**'

concurrency:
group: ${{ github.ref }}-${{ github.workflow }}-${{ github.event_name }}
cancel-in-progress: true

jobs:
build:
name: Integration Tests
runs-on: ubuntu-latest

steps:
- name: Clean workspace
uses: Chia-Network/actions/clean-workspace@main

- name: Checkout Code
uses: actions/checkout@v3

- name: Setup Node 18.16
uses: actions/setup-node@v3
with:
node-version: '18.16'

- name: npm install
run: |
node --version
npm install
- name: npm run tests
env:
CADT_HOST: 'https://integration-testing.chiamanaged.com/coreregistrycadt01'
EXPLORER_HOST: 'https://integration-testing.chiamanaged.com/coreregistryexplorer01'
TOKENIZATION_ENGINE_HOST: 'https://integration-testing.chiamanaged.com/coreregistryengine01'
run: |
npm run test
4 changes: 4 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module.exports = {
testMatch: ["**/*.test.js"],
verbose: true,
};
Loading

0 comments on commit 6b157c1

Please sign in to comment.