mirror of
https://github.com/godotengine/godot-vscode-plugin.git
synced 2025-12-31 13:48:24 +03:00
Bumps [actions/setup-node](https://github.com/actions/setup-node) from v2.1.4 to v2.1.5. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v2.1.4...46071b5c7a2e0c34e49c3cb8a0e792e86e18d5ea) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
27 lines
595 B
YAML
27 lines
595 B
YAML
name: Continuous integration
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Install Node.js
|
|
uses: actions/setup-node@v2.1.5
|
|
with:
|
|
node-version: 12.x
|
|
|
|
- name: Lint and build extension
|
|
run: |
|
|
npm install
|
|
npm run lint
|
|
node_modules/.bin/vsce package --out godot-tools.vsix
|
|
|
|
- name: Upload extension VSIX
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: godot-tools
|
|
path: godot-tools.vsix
|