EGON-38: Restore last autosaved draft on reload #113 #49
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: Continuous integration | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- run: npm ci | |
- run: npm run format:check | |
- run: npm run test | |
- run: npm run build | |
- run: npm run zip | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: domain-story-modeler | |
path: | | |
dist/*.zip | |
README.md | |
if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn` |