Skip to content

test: add dashboard UI testing infrastructure (#133) #43

test: add dashboard UI testing infrastructure (#133)

test: add dashboard UI testing infrastructure (#133) #43

Workflow file for this run

name: Release & Publish
on:
push:
branches:
- main
permissions:
id-token: write
contents: write
pull-requests: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '24.x'
registry-url: 'https://registry.npmjs.org'
- name: Install pnpm
run: npm install -g pnpm
- name: Install dependencies
run: pnpm install
- name: Check Lint
run: pnpm lint
- name: Build everything
run: pnpm build
- name: Validate package
run: pnpm --filter r2-explorer publint
- name: Create Release Pull Request or Publish
id: changesets
uses: changesets/action@v1
with:
publish: pnpm release
title: 'chore: version packages'
commit: 'chore: version packages'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_CONFIG_PROVENANCE: true