Try getting env variable from process before searching for files #794
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: 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 turbo run lint test | |
- run: yarn deps:build | |
- run: yarn turbo run build | |
- run: yarn vscode:dev | |
- run: (cd apps/extension/client && npx vsce package --yarn) | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: xstate-tools | |
path: 'apps/extension/client/*.vsix' |