Add create and update REST API endpoints (/save) #722
Workflow file for this run
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: build-app | |
on: | |
pull_request: | |
branches: | |
- 'develop' | |
push: | |
branches: | |
- 'feature/*' | |
workflow_dispatch: | |
jobs: | |
build-app: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- id: nvmrc | |
uses: browniebroke/read-nvmrc-action@v1 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '${{ steps.nvmrc.outputs.node_version }}' | |
cache: 'yarn' | |
- run: yarn install | |
# - uses: mxschmitt/action-tmate@v3 | |
- run: yarn build | |
# - run: yarn tests-report-json | |
# - name: Test Report | |
# uses: dorny/test-reporter@v1 | |
# if: success() || failure() # run this step even if previous step failed | |
# with: | |
# name: Unit Tests # Name of the check run which will be created | |
# path: test-results.json # Path to test results | |
# reporter: mocha-json # Format of test results |