Skip to content

Commit

Permalink
chore(): split merge queue and build jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinMind committed Nov 24, 2023
1 parent c18041a commit 60334aa
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 6 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
name: ci build
run-name: ${{ github.actor }} is learning GitHub Actions
on:
pull_request:
push:
branches:
- gh-readonly-queue/main/*
merge_group:
types: [checks_requested]
jobs:
build:
runs-on: ubuntu-latest
Expand Down
20 changes: 20 additions & 0 deletions .github/workflows/merge_queue.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: merge queueu
on:
merge_group:
types: [checks_requested]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies
run: npm i
- name: Build
run: npm run build
env:
CI_DELAY: "60000"
CI_FAIL: ""

0 comments on commit 60334aa

Please sign in to comment.