Skip to content

Speed up github actions for PRs #11

Speed up github actions for PRs

Speed up github actions for PRs #11

Workflow file for this run

name: PR (Base)
# All PRs touching code will run tests on ubuntu/node/chromium
on:
pull_request:
paths-ignore:
- "docs/**"
- "scripts/**"
- "contributors.yml"
- "**/*.md"
jobs:
build:
if: github.repository == 'remix-run/remix'
uses: ./.github/workflows/shared-build.yml
unit-ubuntu:
if: github.repository == 'remix-run/remix'
uses: ./.github/workflows/shared-test-unit.yml
with:
os: "ubuntu-latest"
node_version: '["latest"]'
integration-chromium:
if: github.repository == 'remix-run/remix'
uses: ./.github/workflows/shared-test-integration.yml
with:
os: "ubuntu-latest"
node_version: '["latest"]'
browser: '["chromium"]'