mirror of
https://github.com/godotengine/godot-vscode-plugin.git
synced 2025-12-31 13:48:24 +03:00
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3.1.1 to 3.1.3. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3.1.1...v3.1.3) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
28 lines
620 B
YAML
28 lines
620 B
YAML
name: Continuous integration
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Install Node.js
|
|
uses: actions/setup-node@v3.5.1
|
|
with:
|
|
node-version: 16.x
|
|
|
|
- name: Lint and build extension
|
|
run: |
|
|
npm install
|
|
npm run lint
|
|
npm run package -- --out godot-tools.vsix
|
|
ls -l godot-tools.vsix
|
|
|
|
- name: Upload extension VSIX
|
|
uses: actions/upload-artifact@v3.1.3
|
|
with:
|
|
name: godot-tools
|
|
path: godot-tools.vsix
|