Skip to content

Commit

Permalink
disable ci
Browse files Browse the repository at this point in the history
  • Loading branch information
jtoar committed Feb 27, 2024
1 parent 7786a0e commit b61ee6a
Showing 1 changed file with 46 additions and 46 deletions.
92 changes: 46 additions & 46 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,46 +1,46 @@
name: 🔄 CI

on:
pull_request:

# Cancel in-progress runs of this workflow.
# See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-only-cancel-in-progress-jobs-or-runs-for-the-current-workflow.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
ci:
name: 🔄 CI
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
path: release-tooling

- name: ⬢ Enable Corepack
run: corepack enable

- name: ⬢ Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20

- name: 🐈 Yarn install
run: cd release-tooling && yarn install --inline-builds
env:
GITHUB_TOKEN: ${{ github.token }}

- name: Checkout the Redwood monorepo
uses: actions/checkout@v4
with:
repository: redwoodjs/redwood
fetch-depth: 0
path: redwood

- name: 🧪 Test
run: cd release-tooling && yarn test ./triage
env:
REDWOOD_GITHUB_TOKEN: ${{ github.token }}
RWFW_PATH: ../redwood
# name: 🔄 CI

# on:
# pull_request:

# # Cancel in-progress runs of this workflow.
# # See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-only-cancel-in-progress-jobs-or-runs-for-the-current-workflow.
# concurrency:
# group: ${{ github.workflow }}-${{ github.ref }}
# cancel-in-progress: true

# jobs:
# ci:
# name: 🔄 CI
# runs-on: ubuntu-latest

# steps:
# - uses: actions/checkout@v4
# with:
# path: release-tooling

# - name: ⬢ Enable Corepack
# run: corepack enable

# - name: ⬢ Set up Node.js
# uses: actions/setup-node@v4
# with:
# node-version: 20

# - name: 🐈 Yarn install
# run: cd release-tooling && yarn install --inline-builds
# env:
# GITHUB_TOKEN: ${{ github.token }}

# - name: Checkout the Redwood monorepo
# uses: actions/checkout@v4
# with:
# repository: redwoodjs/redwood
# fetch-depth: 0
# path: redwood

# - name: 🧪 Test
# run: cd release-tooling && yarn test ./triage
# env:
# REDWOOD_GITHUB_TOKEN: ${{ github.token }}
# RWFW_PATH: ../redwood

0 comments on commit b61ee6a

Please sign in to comment.