fix: resolve workspace folder in config path for better compatibility #45
This file contains hidden or 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
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '18' | |
| cache: 'npm' | |
| - name: Install global dependencies | |
| run: npm install -g typescript vsce | |
| - name: npm-ci | |
| run: npm ci | |
| - name: npm-compile | |
| run: npm run compile | |
| - name: vsce package | |
| run: vsce package |