Skip to content

Commit

Permalink
t
Browse files Browse the repository at this point in the history
  • Loading branch information
joewatt95 committed Mar 31, 2024
1 parent a55a57c commit dce81f9
Showing 1 changed file with 5 additions and 16 deletions.
21 changes: 5 additions & 16 deletions .github/workflows/webeditor.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# This is a basic workflow to help you get started with Actions

name: Build and deploy webeditor app

# Controls when the workflow will run
Expand All @@ -14,9 +12,12 @@ on:
workflow_dispatch:

jobs:
setup-jvm-clojure:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

# Setup JVM and Clojure tooling
- name: Setup GraalVM
uses: graalvm/setup-graalvm@v1
with:
Expand All @@ -42,9 +43,7 @@ jobs:
# key: cljdeps-${{ hashFiles('build.boot') }}
restore-keys: cljdeps-

setup-nodejs-pnpm:
runs-on: ubuntu-latest
steps:
# Setup Nodejs and pnpm
- name: Setup Node.js
uses: actions/setup-node@v4
with:
Expand All @@ -69,16 +68,6 @@ jobs:
restore-keys: |
${{ runner.os }}-pnpm-store-
build:
runs-on: ubuntu-latest
needs:
- setup-jvm-clojure
- setup-nodejs-pnpm

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v4

- name: Install pnpm dependencies
run: pnpm install

Expand Down

0 comments on commit dce81f9

Please sign in to comment.