Browse Source

fixed syntax

pull/652/head
JG 3 years ago
parent
commit
d90b6f1567
  1. 6
      .github/workflows/staging_pipeline.yml

6
.github/workflows/staging_pipeline.yml

@ -14,7 +14,7 @@ defaults:
jobs: jobs:
test: test:
name: Test name: Test
if: ! github.event.pull_request.draft if: '!github.event.pull_request.draft'
runs-on: ubuntu-latest runs-on: ubuntu-latest
services: services:
@ -73,7 +73,7 @@ jobs:
lint: lint:
name: Lint name: Lint
if: ! github.event.pull_request.draft if: '!github.event.pull_request.draft'
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
@ -101,7 +101,7 @@ jobs:
audit: audit:
name: Audit dependencies name: Audit dependencies
if: ! github.event.pull_request.draft if: '!github.event.pull_request.draft'
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:

Loading…
Cancel
Save