Radish alpha
r
Radicle web interface
Radicle
Git (anonymous pull)
Log in to clone via SSH
Updates some CI packages to v3 and skips test if PR is merged
Sebastian Martinez committed 3 years ago
commit 65b37b7ef4828eb18b142de6278eeffc2cef6859
parent d7f815672570ccb79c7774247a48fefb8f4b4a74
5 files changed +8 -3
modified .github/workflows/check-build.yml
@@ -9,6 +9,7 @@ on:

jobs:
  check-build:
+
    if: github.event.pull_request.merged == false
    timeout-minutes: 30
    runs-on: ubuntu-latest
    steps:
modified .github/workflows/check-e2e.yml
@@ -9,6 +9,7 @@ on:

jobs:
  check-e2e:
+
    if: github.event.pull_request.merged == false
    continue-on-error: true
    strategy:
      matrix:
modified .github/workflows/check-format.yml
@@ -9,13 +9,14 @@ on:

jobs:
  check-format:
+
    if: github.event.pull_request.merged == false
    runs-on: ubuntu-latest
    steps:
      - name: Setup Node
        uses: actions/setup-node@v3
        with:
          node-version: "18.12.1"
-
      - uses: actions/checkout@v2
+
      - uses: actions/checkout@v3
      - run: npm ci
      - run: ./scripts/check-format
        shell: bash
modified .github/workflows/check-unit-test.yml
@@ -9,6 +9,7 @@ on:

jobs:
  check-unit-test:
+
    if: github.event.pull_request.merged == false
    runs-on: ubuntu-latest
    steps:
      - name: Setup Node
@@ -16,6 +17,6 @@ jobs:
        with:
          node-version: "18.12.1"
      - name: Checkout
-
        uses: actions/checkout@v2
+
        uses: actions/checkout@v3
      - run: npm ci
      - run: npm run test:unit
modified .github/workflows/check.yml
@@ -9,12 +9,13 @@ on:

jobs:
  check:
+
    if: github.event.pull_request.merged == false
    runs-on: ubuntu-latest
    steps:
      - name: Setup Node
        uses: actions/setup-node@v3
        with:
          node-version: "18.12.1"
-
      - uses: actions/checkout@v2
+
      - uses: actions/checkout@v3
      - run: npm ci
      - run: npm run check