Fix so that tick
stream can be properly closed
#222
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Frontend test | |
on: | |
- push | |
- pull_request | |
jobs: | |
Frontend-Test: | |
name: Frontend test | |
runs-on: ubuntu-latest | |
if: ${{ !contains(github.event.pull_request.title, '[skip ci]') }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
cache: "npm" | |
- name: Install npm | |
run: npm install | |
- name: Run test | |
run: npm test |