Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Use correct github action yamls #4071

Merged
merged 1 commit into from
Aug 29, 2024
Merged
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
2 changes: 2 additions & 0 deletions .github/workflows/development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:

build:
name: Build application
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: "☁️ checkout repository"
Expand All @@ -25,6 +26,7 @@ jobs:
uses: actions/setup-node@v2.1.5
with:
node-version: 18
cache: "npm"

- name: "🔧 install npm@latest"
run: npm i -g npm@latest
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
issues: write # for peter-evans/create-or-update-comment to create or update comment
pull-requests: write # for peter-evans/create-or-update-comment to create or update comment
name: Comment
runs-on: ubuntu-latest
steps:
- name: Automatic Comment
uses: peter-evans/create-or-update-comment@v2
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Build App
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
jobs:
setup:
name: Set environment variables
runs-on: ubuntu-latest
timeout-minutes: 10
outputs:
DEPLOY_ENVIRONMENT: ${{ steps.env.outputs.DEPLOY_ENVIRONMENT }}
Expand All @@ -27,6 +28,7 @@ jobs:

build:
name: Build application
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: "☁️ checkout repository"
Expand All @@ -36,6 +38,7 @@ jobs:
uses: actions/setup-node@v2.1.5
with:
node-version: 18
cache: "npm"

- name: "🔧 install npm@latest"
run: npm i -g npm@latest
Expand All @@ -61,6 +64,7 @@ jobs:
- setup
- test
- build
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Generate token
Expand Down Expand Up @@ -93,6 +97,7 @@ jobs:
name: Cleanup actions
needs:
- release
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: "♻️ remove build artifacts"
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/storybook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ on:
jobs:
deploy:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- name: "☁️ checkout repository"
uses: actions/checkout@v2
Expand All @@ -21,6 +22,7 @@ jobs:
uses: actions/setup-node@v2.1.5
with:
node-version: 18
cache: "npm"

- name: "🔧 install npm@latest"
run: npm i -g npm@latest
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/triage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
jobs:
take-issue:
name: Disable take issue
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: take an issue
Expand Down
Loading