drriguz building 🚀 #39
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: Build project | |
run-name: ${{ github.actor }} building 🚀 | |
on: [push] | |
jobs: | |
Explore-GitHub-Actions: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18.x" | |
- name: Build dependency | |
run: npm run install:schema && npm run build:schema | |
- name: Install dependencies | |
run: npm run install:all | |
- name: Build Webview | |
run: npm run build:webview | |
- name: Build Extension | |
run: npm run compile |