Skip to content

Merge pull request #1 from rabbitholegg/sam/boost-4067-scaffold-initi… #1

Merge pull request #1 from rabbitholegg/sam/boost-4067-scaffold-initi…

Merge pull request #1 from rabbitholegg/sam/boost-4067-scaffold-initi… #1

name: Main
on:
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
verify:
name: Verify
uses: ./.github/workflows/verify.yml

Check failure on line 13 in .github/workflows/on-push-to-main.yml

View workflow run for this annotation

GitHub Actions / Main

Invalid workflow file

The workflow is not valid. In .github/workflows/on-push-to-main.yml (Line: 13, Col: 11): Error from called workflow rabbitholegg/boost-protocol/.github/workflows/verify.yml@b4ed71501d90b766665adbe5d83a9419b123af7f (Line: 9, Col: 12): Job 'build' depends on unknown job 'lint'.
secrets: inherit
changesets:
name: Changesets
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Install dependencies
uses: ./.github/actions/install-dependencies
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create Version Pull Request
uses: changesets/action@v1
with:
version: pnpm changeset:version
commit: "chore: version package"
title: "chore: version package"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
release:
name: Release
needs: verify
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Install dependencies
uses: ./.github/actions/install-dependencies
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create .npmrc
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc
- name: Publish to NPM
uses: changesets/action@v1
with:
publish: pnpm publish-packages
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN }}
# TODO: do we want this?
# docs:
# needs: check
# name: Deploy Docs
# runs-on: ubuntu-latest
# permissions:
# contents: write
# pages: write
# id-token: write
# steps:
# - uses: actions/checkout@v4
# with:
# submodules: recursive
# - name: Install Foundry
# uses: foundry-rs/foundry-toolchain@v1
# with:
# version: nightly
# - name: Build Documentation (mdBook)
# working-directory: ./packages/evm
# run: forge doc --build
# - name: Publish Documentation
# uses: JamesIves/github-pages-deploy-action@v4
# with:
# folder: ./packages/evm/docs/book
# token: ${{ secrets.GITHUB_TOKEN }}