Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 0 additions & 17 deletions .github/workflows/ci.yml

This file was deleted.

20 changes: 20 additions & 0 deletions .github/workflows/integrate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
on:
workflow_call:
jobs:
docker:
name: app
uses: umts/.github/.github/workflows/docker.yml@main
haml-lint:
name: app
uses: umts/.github/.github/workflows/haml-lint.yml@main
rspec:
name: app
uses: umts/.github/.github/workflows/rspec.yml@main
with:
node: true
rubocop:
name: app
uses: umts/.github/.github/workflows/rubocop.yml@main
stylelint:
name: app
uses: umts/.github/.github/workflows/stylelint.yml@main
8 changes: 8 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: pull_request
permissions:
contents: read
on:
pull_request:
jobs:
integrate:
uses: ./.github/workflows/integrate.yml
10 changes: 10 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: push
permissions:
contents: read
on:
push:
branches:
- main
jobs:
integrate:
uses: ./.github/workflows/integrate.yml
1 change: 1 addition & 0 deletions .node-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
24.14.1
Loading