Skip to content

enh(createStore):

enh(createStore): #348

Workflow file for this run

name: Tests with JEST
on: [push, workflow_call, pull_request]
jobs:
test:
name: Test on node ${{ matrix.node_version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node_version: ["14", "16"]
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node_version }}
cache: "npm"
- name: Testing
run: npm install && npm run compile && npm test