Skip to content

Commit

Permalink
Add workflow for publishing package preview and remove test
Browse files Browse the repository at this point in the history
  • Loading branch information
alec-chernicki committed Jul 10, 2024
1 parent 8223507 commit a9aca5e
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 72 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/package-preview.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Publish Package Preview
on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'

- name: Install dependencies
run: pnpm install

- name: Build
run: pnpm build

- run: pnpx pkg-pr-new publish
72 changes: 0 additions & 72 deletions apps/commonality/test/integration/check.test.ts

This file was deleted.

0 comments on commit a9aca5e

Please sign in to comment.