fetch ci each stage
Some checks failed
PR / lint (pull_request) Successful in 35s
PR / test (pull_request) Successful in 1m17s
PR / docker-build (pull_request) Successful in 1m31s
PR / e2e (pull_request) Failing after 7m53s

This commit is contained in:
Madison Grubb
2026-03-04 14:30:18 -05:00
parent f6607f6d41
commit 8f2f3aeb88

View File

@@ -4,7 +4,7 @@ on:
pull_request:
jobs:
install:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
@@ -18,35 +18,11 @@ jobs:
- name: Install dependencies
run: npm ci
- name: Upload node_modules
uses: https://gitea.com/actions/gitea-upload-artifact@main
with:
name: node_modules
path: node_modules/
lint:
runs-on: ubuntu-latest
needs: install
steps:
- uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: "24"
cache: "npm"
- name: Restore node_modules
uses: https://github.com/ChristopherHX/gitea-download-artifact@main
with:
name: node_modules
- name: Run lint
run: npm run lint
test:
runs-on: ubuntu-latest
needs: install
steps:
- uses: actions/checkout@v6
@@ -56,17 +32,14 @@ jobs:
node-version: "24"
cache: "npm"
- name: Restore node_modules
uses: https://github.com/ChristopherHX/gitea-download-artifact@main
with:
name: node_modules
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test
e2e:
runs-on: ubuntu-latest
needs: install
steps:
- uses: actions/checkout@v6
@@ -76,10 +49,8 @@ jobs:
node-version: "24"
cache: "npm"
- name: Restore node_modules
uses: https://github.com/ChristopherHX/gitea-download-artifact@main
with:
name: node_modules
- name: Install dependencies
run: npm ci
- name: Install Playwright browsers
run: npx playwright install --with-deps chromium