Skip to content
1 min read

Getting Started

Fjord Actions are drop-in replacements for the GitHub-hosted actions a Forgejo runner can’t reach. Reference them by full URL so the runner clones them from rasterhub.com instead of github.com.

A minimal workflow

.forgejo/workflows/ci.yml
jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: https://rasterhub.com/rasterstate/setup-node-action@v1
        with:
          node-version: '20'
      - uses: https://rasterhub.com/rasterstate/setup-pnpm-action@v1
      - run: pnpm install --frozen-lockfile
      - run: pnpm test

setup-node-action installs Node from the official distribution (or a mirror you choose), and setup-pnpm-action installs pnpm at the version declared in your package.json. Neither talks to github.com, and neither needs a PAT.

What’s next

  • Actions overview covers the full bundle: cache, artifacts, language toolchains, Docker, and repo automation.
  • Pages overview shows how to publish a static site, like this one, to Fjord Pages.
Contributors
  • Stephen Way