Skip to content

Commit

Permalink
actually add workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
phryneas committed Oct 7, 2024
1 parent c752e42 commit fbff152
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/pkg-pr-new-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: pkg-pr-new Publish

on:
pull_request:
push:
branches:
- "**"
tags:
- "!**"

jobs:
prerelease:
name: pkg-pr-new Publish
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4

- name: Setup Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: yarn

- name: Install dependencies
run: yarn install

- name: Build and publish to pkg.pr.new
run: yarn run pkg-pr-new-publish

0 comments on commit fbff152

Please sign in to comment.