Skip to content

Commit

Permalink
Merge branch 'develop' into develop-builds
Browse files Browse the repository at this point in the history
  • Loading branch information
CubesterYT committed Apr 3, 2024
2 parents 850f557 + 7c3238e commit 1adc8a1
Showing 1 changed file with 35 additions and 10 deletions.
45 changes: 35 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,43 @@
name: Build
name: Build and Push

on:
push:
pull_request:
branches:
- develop-builds

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm run test:lint
- name: Checkout Code
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '21'

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.12.1'

- name: Set up Java
uses: actions/setup-java@v2
with:
java-version: '17'

- name: Install Dependencies
run: npm ci

- name: Build
run: npm run prepublish

- name: Commit and Push Build
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add .
git commit -m "Update Builds"
git push origin develop-builds

0 comments on commit 1adc8a1

Please sign in to comment.