[DAT-3177] adds clear cache after put #105
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] | |
jobs: | |
Basic-Tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- name: git clone | |
uses: actions/checkout@v2 | |
- name: npm install | |
run: npm i --force | |
- name: Run Tests | |
run: npm run test |