Skip to content

Commit

Permalink
chore: gotta specify version in 'remote' workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
beeauvin committed May 1, 2023
1 parent f837138 commit 75abca0
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on:
jobs:
build:
name: 🏗️
uses: cassiecascade/houseplant/.github/workflows/run.yml
uses: cassiecascade/houseplant/.github/workflows/run.yml@main
with:
command: build
node-version: ${{ inputs.node-version }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ on:
jobs:
format:
name: ☑️
uses: cassiecascade/houseplant/.github/workflows/run.yml
uses: cassiecascade/houseplant/.github/workflows/run.yml@main
with:
command: check:format
node-version: ${{ inputs.node-version }}
node-environment: ${{ inputs.node-environment }}

lint:
name: ☑️
uses: cassiecascade/houseplant/.github/workflows/run.yml
uses: cassiecascade/houseplant/.github/workflows/run.yml@main
with:
command: check:lint
node-version: ${{ inputs.node-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
uses: actions/checkout@v3

- name: install
uses: cassiecascade/houseplant/.github/actions/install
uses: cassiecascade/houseplant/.github/actions/install@main
with:
node-version: ${{inputs.node-version }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
uses: actions/checkout@v3

- name: install
uses: cassiecascade/houseplant/.github/actions/install
uses: cassiecascade/houseplant/.github/actions/install@main
with:
node-version: ${{inputs.node-version }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ on:
jobs:
unit:
name: 🧪
uses: cassiecascade/houseplant/.github/workflows/run.yml
uses: cassiecascade/houseplant/.github/workflows/run.yml@main
with:
command: test:unit
node-version: ${{ inputs.node-version }}
node-environment: ${{ inputs.node-environment }}

e2e:
name: 🧪
uses: cassiecascade/houseplant/.github/workflows/run.yml
uses: cassiecascade/houseplant/.github/workflows/run.yml@main
with:
command: test:e2e
node-version: ${{ inputs.node-version }}
Expand Down

0 comments on commit 75abca0

Please sign in to comment.