Merge pull request #333 from lv-z-l/behavior-ts-support #159
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: Test | |
on: | |
- push | |
- pull_request | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
persist-credentials: false | |
- name: restore node modules | |
uses: actions/cache@v2 | |
id: node-modules-cache | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-node-modules-${{ hashFiles('package-lock.json') }} | |
- name: Install Deps | |
if: steps.node-modules-cache.outputs.cache-hit != 'true' | |
run: npm install | |
- name: Run test | |
run: npm run test |