Skip to content

Commit

Permalink
Add tests again to the Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
McGiverGim committed May 19, 2024
1 parent 21a3390 commit 2d04e35
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/artifact-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
workflow_run:
workflows: ["PR"]
types: [completed]
branches: ['*-maintenance']

jobs:
artifacts-url-comments:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ jobs:
build:
name: Build (${{ matrix.name }})
needs: test
if: ${{ endsWith(github.ref, 'maintenance') }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/hide-artifact-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: Hide artifact links comments
on:
pull_request_target:
types: [synchronize, reopened]
branches: ['*-maintenance']

jobs:
hide-artifacts-link-comments:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ name: Nightly
on:
push:
branches:
- master
- '*-maintenance'

jobs:
Expand All @@ -29,6 +30,7 @@ jobs:
release:
name: Nightly release
needs: ci
if: ${{ endsWith(github.ref, 'maintenance') }}
runs-on: ubuntu-22.04
steps:
- name: Fetch build artifacts
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: PR
on:
pull_request:
branches:
- master
- '*-maintenance'

concurrency:
Expand Down
2 changes: 0 additions & 2 deletions src/js/msp.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import GUI from "./gui.js";
import CONFIGURATOR from "./data_storage.js";
import serialNWJS from "./serial.js";
import serialWeb from "./webSerial.js";
import { isWeb } from "./utils/isWeb.js";
import { serialShim } from "./serial_shim.js";

Expand Down

0 comments on commit 2d04e35

Please sign in to comment.