Skip to content

Commit

Permalink
ci: update gh actions scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabio286 committed Nov 14, 2023
1 parent 6876dd6 commit b1aeabf
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/build-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
runs-on: ${{ matrix.os }}

strategy:
fail-fast: false
matrix:
os: [macos-11, ubuntu-latest, windows-latest]

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
runs-on: ${{ matrix.os }}

strategy:
fail-fast: false
matrix:
os: [macos-11, ubuntu-latest, windows-latest]

Expand All @@ -31,7 +32,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18

- name: Install dependencies
run: npm i
Expand Down
33 changes: 33 additions & 0 deletions .github/workflows/test-builds.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Test build [DEVELOP]

on:
workflow_dispatch: {}

env:
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}

jobs:
release:
runs-on: ${{ matrix.os }}

strategy:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]

steps:
- name: Check out Git repository
uses: actions/checkout@v3
with:
ref: develop

- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 20

- name: Install dependencies
run: npm i

- name: "Build"
run: npm run build

0 comments on commit b1aeabf

Please sign in to comment.