Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add tests again to the Github Actions #3973

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading