Skip to content

Commit

Permalink
chore: set correct ci build branch
Browse files Browse the repository at this point in the history
  • Loading branch information
tglman committed Oct 26, 2023
1 parent 6795aba commit da1a5c4
Showing 1 changed file with 2 additions and 14 deletions.
16 changes: 2 additions & 14 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: CI Build

on:
push:
branches: [ develop ]
branches: [ master ]
pull_request:
branches: [ develop ]
branches: [ master ]
workflow_dispatch:
schedule:
- cron: 0 5 * * 1
Expand All @@ -17,33 +17,21 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '8'
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '12.x'
- run: ./ci/initialize-ci.sh 3.2.24
- run: npm install
- run: npm test

build_v18:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '8'
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'
- run: ./ci/initialize-ci.sh 3.2.24
- run: npm install
- run: npm test

0 comments on commit da1a5c4

Please sign in to comment.