Skip to content

fix: make parentId param optional in actions.add() #399

fix: make parentId param optional in actions.add()

fix: make parentId param optional in actions.add() #399

Workflow file for this run

name: Pull Request
on:
pull_request:
branches:
- main
- next
jobs:
build-test:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 16
- name: Cache node_modules
id: cache-modules
uses: actions/cache@v1
with:
path: node_modules
key: ${{ runner.OS }}-build-${{ hashFiles('yarn.lock') }}
- name: Install dependencies
if: steps.cache-modules.outputs.cache-hit != 'true'
run: yarn install --immutable
- name: Build
run: yarn build
- name: Run tests
run: yarn test