Skip to content

chore: fix test

chore: fix test #1635

Workflow file for this run

name: Tests
on: push
jobs:
tests:
strategy:
matrix:
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '18'
- name: Install modules
run: npm install
- name: Run tests
env:
NEAR_ENV: ci
IS_GITHUB_ACTION: true
FORCE_COLOR: 1
run: npm test