Skip to content
This repository was archived by the owner on Oct 10, 2025. It is now read-only.

Commit a4a5e5f

Browse files
committed
refactor: [#10] rename workflow from infrastructure to testing
- Rename .github/workflows/infrastructure.yml to testing.yml - Update workflow name from 'Infrastructure Tests' to 'Testing' - Simplify workflow triggers (remove path-based filtering) - Fix runner specification to use ubuntu-22.04 instead of ubuntu - Maintain same linting functionality with cleaner focus
1 parent 5b70235 commit a4a5e5f

File tree

2 files changed

+25
-45
lines changed

2 files changed

+25
-45
lines changed

.github/workflows/infrastructure.yml

Lines changed: 0 additions & 45 deletions
This file was deleted.

.github/workflows/testing.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Testing
2+
3+
on:
4+
push:
5+
branches: [main, develop]
6+
pull_request:
7+
branches: [main, develop]
8+
9+
jobs:
10+
lint:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: Checkout code
15+
uses: actions/checkout@v4
16+
17+
- name: Install linting tools
18+
run: |
19+
sudo apt-get update
20+
sudo apt-get install -y yamllint shellcheck
21+
sudo npm install -g markdownlint-cli
22+
23+
- name: Run linting script
24+
run: |
25+
./scripts/lint.sh

0 commit comments

Comments
 (0)