⬆️ deps(gha): Bump actions/setup-node from 3.7.0 to 3.8.0 #394
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: Validate PR | |
on: | |
pull_request: | |
branches: [master] | |
jobs: | |
publish_extensions: | |
env: | |
VALIDATE_PR: true | |
SKIP_PUBLISH: true | |
FORCE: true | |
name: Validate PR | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3.8.0 | |
with: | |
node-version: "14.x" | |
- run: npm install | |
- run: npm i -g @vscode/vsce | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.7" | |
- run: EXTENSIONS=$(node diff-extensions) node publish-extensions | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- run: node report-extensions | |
- uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: report | |
path: | | |
/tmp/stat.json | |
/tmp/result.md | |
- name: Upload job summary | |
run: cat /tmp/result.md >> $GITHUB_STEP_SUMMARY |