fix: bundle url #393
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: Basic CI | |
env: | |
CLIENT_ID: ${{ secrets.CLIENT_ID }} # OAuth app client id | |
on: | |
pull_request: | |
branches: [ "master" ] | |
push: | |
branches: | |
- '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 18 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18.x | |
cache: 'npm' | |
- name: npm install and build VSIX | |
run: | | |
npm install | |
npm install -g vsce | |
vsce package | |
- name: Test Compile | |
run: npm run test-compile | |
- name: Lint | |
run: npm run lint | |
- name: Check Prettier | |
run: npm run prettier:check | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: artifacts | |
path: vscode-crowdin-*.vsix |