Skip to content

Merge pull request #136 from atomic-state/features/createStore #414

Merge pull request #136 from atomic-state/features/createStore

Merge pull request #136 from atomic-state/features/createStore #414

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: ['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