Skip to content

v9.7.3: fix more rpcs and add test:rpcs #1

v9.7.3: fix more rpcs and add test:rpcs

v9.7.3: fix more rpcs and add test:rpcs #1

name: Test RPC Availability
on:
push:
branches:
- '*' # Matches all branches
schedule:
# Runs at 05:00 UTC every day
- cron: '0 5 * * *'
jobs:
daily-job:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '18.x'
- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: npm install
run: |
npm install
- name: npm run build
run: |
npm run build
- name: Run Tests
run: |
yarn test:rpcs