Skip to content

Commit

Permalink
chore(cicd.yml): correct paths
Browse files Browse the repository at this point in the history
  • Loading branch information
waldronmatt committed Apr 18, 2024
1 parent 50d526c commit c527163
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,27 +20,27 @@ jobs:
pnpm-version: [8]
steps:
- name: Checkout Code
uses: ../actions/checkout.yml
uses: ./.github/actions/checkout.yml

- name: Setup Node.js
uses: ../actions/setup-node.yml
uses: ./.github/actions/setup-node.yml
with:
node-version: ${{ matrix.node-version }}

- name: Setup pnpm and Cache
uses: ../actions/setup-pnpm.yml
uses: ./.github/actions/setup-pnpm.yml
with:
pnpm-version: ${{ matrix.pnpm-version }}

- name: Install Playwright and Dependencies
uses: ../actions/install-deps.yml
uses: ./.github/actions/install-deps.yml

- name: Run NX Affected Commands
uses: ../actions/run-affected.yml
uses: ./.github/actions/run-affected.yml

- name: Publish Packages
if: github.event_name == 'push'
uses: ../actions/publish.yml
uses: ./.github/actions/publish.yml
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
npm-token: ${{ secrets.NPM_TOKEN }}

0 comments on commit c527163

Please sign in to comment.