Allow DELETE to return a 200 status and payload #67
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: CI | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the master branch | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
CI: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: cleaning the cache | |
run: yarn cache clean | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: bootstrap | |
run: yarn bootstrap | |
- name: Run unit tests | |
run: yarn lerna run test |