-
Notifications
You must be signed in to change notification settings - Fork 7
33 lines (27 loc) · 711 Bytes
/
main.yml
File metadata and controls
33 lines (27 loc) · 711 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install dependencies
run: npm i
- name: Package VS Code extension
id: package
uses: nhedger/package-vscode-extension@v1
- name: Publish VS Code extension artifact
uses: actions/upload-artifact@v4
with:
name: funkin-completer-build
path: ${{ steps.package.outputs.packagePath }}