Skip to content

feat: Release pipeline #38

feat: Release pipeline

feat: Release pipeline #38

Workflow file for this run

name: PR build
on:
pull_request:
jobs:
build:
if: "!contains(github.event.pull_request.labels.*.name, 'nobuild')"
runs-on: ubuntu-latest
permissions: write-all
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
registry-url: https://npm.pkg.github.com/
scope: '@weka'
- run: yarn install
- run: yarn publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}