Skip to content

Add General Page Reader Web and Focus workspaces #132

Add General Page Reader Web and Focus workspaces

Add General Page Reader Web and Focus workspaces #132

Workflow file for this run

name: CI
on:
push:
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
public:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Set up Node
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: "24"
cache: npm
- name: Install dependencies
run: npm ci
- name: Run public gate
if: github.ref_type != 'tag'
run: npm run check:public
- name: Run release tag gate
if: github.ref_type == 'tag'
run: npm run check:public:release-tag