Fix race condition, add a bunch of silly console logs #1088
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 | |
on: | |
push: | |
branches: | |
- '**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
cache: 'yarn' | |
- run: yarn | |
- run: yarn deps:build | |
- run: yarn turbo run build | |
- run: yarn vscode:dev | |
- run: yarn turbo run lint test | |
- run: (cd apps/extension/client && npx vsce package --yarn) | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: xstate-tools | |
path: 'apps/extension/client/*.vsix' |