Skip to content

Commit

Permalink
ci: debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
mok-liee committed Feb 29, 2024
1 parent ce2ac4c commit 05a5c1d
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ on:
- master
- renovate/**
pull_request:
types: [ assigned, opened, synchronize, reopened ]
types: [assigned, opened, synchronize, reopened]
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 18.x ]
node-version: [18.x]

steps:
- name: Checkout
Expand Down Expand Up @@ -48,13 +48,13 @@ jobs:
path: dist/apps/package.tgz

e2e:
name: "E2E local: (${{ matrix.os }})"
name: 'E2E local: (${{ matrix.os }})'
needs: build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macos-latest ]
node-version: [ 18.x ]
os: [ubuntu-latest, macos-latest]
node-version: [18.x]

steps:
- name: Checkout
Expand All @@ -71,6 +71,10 @@ jobs:

- name: Test
run: |
export
echo $JAVA_HOME
echo $PATH
java -version
cd ./examples
yarn global add json && export PATH="$(yarn global bin):$PATH"
yarn cache clean && yarn add $GITHUB_WORKSPACE/package.tgz
Expand Down

0 comments on commit 05a5c1d

Please sign in to comment.