Skip to content

Commit 0641938

Browse files
author
perlinson
committed
Add simple test workflow to verify GitHub Actions
- Create minimal test workflow - Print basic information for debugging - Verify GitHub Actions functionality
1 parent 27b2359 commit 0641938

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Test Workflow
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
workflow_dispatch:
7+
8+
jobs:
9+
test:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v4
15+
16+
- name: Setup Node.js
17+
uses: actions/setup-node@v4
18+
with:
19+
node-version: '18'
20+
21+
- name: Print info
22+
run: |
23+
echo "🚀 Test workflow is running!"
24+
echo "Node version: $(node --version)"
25+
echo "NPM version: $(npm --version)"
26+
echo "Current directory: $(pwd)"
27+
echo "Files in .github/workflows:"
28+
ls -la .github/workflows/

0 commit comments

Comments
 (0)