chore: Update version for release (pre) (#7302) #36
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Branch | |
# main/dev/release-* branches and nightly tags will get the full run across | |
# all OS/browsers for multiple node versions | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
- release-* | |
tags: | |
- "v0.0.0-nightly-*" | |
paths-ignore: | |
- "docs/**" | |
- "scripts/**" | |
- "contributors.yml" | |
- "**/*.md" | |
jobs: | |
build: | |
name: "⚙️ Build" | |
if: github.repository == 'remix-run/remix' | |
uses: ./.github/workflows/shared-build.yml | |
unit-ubuntu: | |
name: "🧪 Unit Test" | |
if: github.repository == 'remix-run/remix' | |
uses: ./.github/workflows/shared-test-unit.yml | |
with: | |
os: "ubuntu-latest" | |
node_version: "[18, 20]" | |
unit-windows: | |
name: "🧪 Unit Test" | |
if: github.repository == 'remix-run/remix' | |
uses: ./.github/workflows/shared-test-unit.yml | |
with: | |
os: "windows-latest" | |
node_version: "[18, 20]" | |
integration-ubuntu: | |
name: "👀 Integration Test" | |
if: github.repository == 'remix-run/remix' | |
uses: ./.github/workflows/shared-test-integration.yml | |
with: | |
os: "ubuntu-latest" | |
node_version: "[18, 20]" | |
browser: '["chromium", "firefox"]' | |
integration-windows: | |
name: "👀 Integration Test" | |
if: github.repository == 'remix-run/remix' | |
uses: ./.github/workflows/shared-test-integration.yml | |
with: | |
os: "windows-latest" | |
node_version: "[18, 20]" | |
browser: '["msedge"]' | |
integration-macos: | |
name: "👀 Integration Test" | |
if: github.repository == 'remix-run/remix' | |
uses: ./.github/workflows/shared-test-integration.yml | |
with: | |
os: "macos-latest" | |
node_version: "[18, 20]" | |
browser: '["webkit"]' |