[AXON-29] chore: initial setup of Github CI #6
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: Build | |
on: | |
push: | |
branches: | |
- '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
- name: Install dependencies | |
run: npm install | |
# - name: Run linter | |
# run: npm run lint | |
# - name: Run unit tests | |
# run: npm run test | |
# - name: Build the extension | |
# run: npm run extension:package | |
- name: Verify VSCE token | |
run: | | |
npx vsce --version | |
npx vsce --help | |
npx vsce vefify-pat --help | |
npx vsce vefify-pat -p ${{ secrets.VSCE_MARKETPLACE_TOKEN }} | |
- name: Verify OpenVSX token | |
run: | | |
npx ovsx vefify-pat -p ${{ secrets.OPENVSX_KEY }} |