extension auto configuration (#1075) #2705
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: | |
- name: Clone Repository | |
uses: actions/checkout@v2 | |
with: | |
submodules: "recursive" | |
- name: Setup Node.js 14 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "14" | |
- 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@v1 | |
if: failure() | |
with: | |
name: test-result.xml | |
path: test-result.xml | |
- name: Package open .vsix | |
run: yarn packageWithoutDependencies | |
- name: Upload no dependencies .vsix File | |
uses: actions/upload-artifact@v1 | |
with: | |
name: esp-idf-extension-open.vsix | |
path: esp-idf-extension-open.vsix | |
- name: Package .vsix | |
run: yarn package | |
- name: Upload .vsix File | |
uses: actions/upload-artifact@v1 | |
with: | |
name: esp-idf-extension.vsix | |
path: esp-idf-extension.vsix |