Update project assets and documentation #16
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PEST.js CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Check script permissions | |
run: | | |
chmod +x setup.sh | |
- name: Validate script | |
run: | | |
# Test if script can create a test project | |
./setup.sh <<< "test-project" | |
- name: Verify generated structure | |
run: | | |
cd test-project | |
# Check if essential files exist | |
test -f package.json | |
test -f tsconfig.json | |
test -d src | |
test -d tests |