Skip to content

fix: merging local data complete needs to happen after all side effects #389

fix: merging local data complete needs to happen after all side effects

fix: merging local data complete needs to happen after all side effects #389

Workflow file for this run

name: Run Checks
on: [push, pull_request]
jobs:
Test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: '16'
- name: Install modules
run: npm install
- name: Run tests
run: npm test
Format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: '16'
- name: Install modules
run: npm install
- name: Check formatting
run: npm run format:check
Lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: '16'
- name: Install modules
run: npm install
- name: Run linter
run: npm run lint:check