Skip to content

Commit

Permalink
ci(all): clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
a145789 committed Jun 19, 2023
1 parent e37f3cb commit 210554d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

jobs:
lint:
if: "!contains(github.event.head_commit.message, '[skip check]')"
if: '!contains(github.event.head_commit.message, "[skip check]")'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -35,7 +35,7 @@ jobs:
run: nr lint

typecheck:
if: "!contains(github.event.head_commit.message, '[skip check]')"
if: '!contains(github.event.head_commit.message, "[skip check]"")'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -59,7 +59,7 @@ jobs:
run: nr typecheck

test:
if: "!contains(github.event.head_commit.message, '[skip check]')"
if: '!contains(github.event.head_commit.message, "[skip check]")'
runs-on: ${{ matrix.os }}

strategy:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
build-and-deploy:
if: "contains(github.event.head_commit.message, 'playground')"
if: 'contains(github.event.head_commit.message, "playground") || contains(github.event.head_commit.message, "all")'
runs-on: ubuntu-latest

steps:
Expand All @@ -33,4 +33,5 @@ jobs:
with:
branch: gh-pages # The branch the action should deploy to.
folder: playground/dist # The folder the action should deploy.
env:
ACCESS_TOKEN: ${{secrets.GITHUB_TOKEN}}
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,5 @@ jobs:
with:
branch: gh-pages
folder: playground/dist
env:
ACCESS_TOKEN: ${{secrets.GITHUB_TOKEN}}

0 comments on commit 210554d

Please sign in to comment.