[VSC-1478] Disable cmds for Codespaces and redirect Flash monitor to Web extension #3254
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: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
extension_ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: "recursive" | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Install Node Dependencies | |
run: yarn | |
- name: Lint Check | |
run: yarn lint | |
- name: Run test | |
uses: ./.github/actions/idf | |
id: idftest | |
- name: Get the test output | |
run: echo "${{ steps.idftest.outputs.result }}" | tee test-result.xml | |
- name: Upload if failed test results | |
uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: test-result.xml | |
path: test-result.xml | |
- name: Package .vsix | |
run: yarn package | |
- name: Upload .vsix File | |
uses: actions/upload-artifact@v4 | |
with: | |
name: esp-idf-extension.vsix | |
path: esp-idf-extension.vsix |