Remove the legacy 'reusable' button #140
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: SessionStorage-UT | |
on: [push] | |
jobs: | |
install: | |
name: Install dependencies | |
runs-on: windows-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Cache node modules | |
id: cache-npm | |
uses: actions/cache@v3.0.7 | |
env: | |
cache-name: cached-npm-deps | |
with: | |
path: ./node_modules | |
key: ${{ hashFiles('./package.json') }} | |
- name: Install required dependencies on cache miss (npm) | |
if: steps.cache-npm.outputs.cache-hit != 'true' | |
run: | | |
npm install | |
test: | |
name: Run the unit tests | |
runs-on: windows-latest | |
needs: [install] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
- name: Pull the npm dependencies | |
uses: actions/cache@v3.0.7 | |
with: | |
path: ./node_modules | |
key: ${{ hashFiles('./package.json') }} | |
- name: Run unit tests | |
run: npx jest |