Skip to content

CI

CI #1259

Workflow file for this run

name: CI
on: push
jobs:
build:
timeout-minutes: 5
runs-on: ${{ fromJSON('["ubuntu-latest", "self-hosted"]')[github.repository == 'github/docs-internal'] }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
registry-url: 'https://registry.npmjs.org'
node-version: '20.11.x'
- name: Install modules
run: npm install
- name: Run CI
run: npm run ci