Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the CI publish pipeline to be inline with PR checks #7050

Merged
merged 1 commit into from
Dec 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions .github/workflows/cd-release-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
node: [20.x]
if: contains('chrisdholt,janechu,nicholasrice,awentzel,eisenbergeffect', github.actor)
if: contains('chrisdholt,janechu', github.actor)

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -48,10 +48,20 @@ jobs:
run: npm run checkchange

- name: Testing Prettier format
run: npm run prettier:diff
run: npm run format:check

- name: Build workspaces
run: npm run build

- name: Install playwright dependencies and browsers
run: |
npx playwright install

- name: Testing unit tests
run: npm run test --stream
run: npm run test

- name: Testing final validation
run: npm run test:validation

- name: Publish NPM packages
env:
Expand Down
Loading