Skip to content

chore: bump agw-react to 0.0.1-beta-20 (#113) #335

chore: bump agw-react to 0.0.1-beta-20 (#113)

chore: bump agw-react to 0.0.1-beta-20 (#113) #335

Workflow file for this run

# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
name: Package Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up pnpm
uses: pnpm/action-setup@v4
- name: Set up node
uses: actions/setup-node@v4
with:
node-version: 20
- run: pnpm install
- run: pnpm lint:check
- run: pnpm prettier-check
- run: pnpm build
- run: pnpm test:build