Skip to content

Commit

Permalink
ci(.github): fix actions directory and file name setup
Browse files Browse the repository at this point in the history
  • Loading branch information
waldronmatt committed Apr 18, 2024
1 parent c527163 commit 267d8b7
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 6 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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: ./.github/actions/checkout.yml
uses: ./.github/actions/checkout

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

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

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

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

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

0 comments on commit 267d8b7

Please sign in to comment.