Add pre-release checklist to release process documentation #33
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Build | |
| run: | | |
| xcodebuild build \ | |
| -project "CF Cache Status/CF Cache Status.xcodeproj" \ | |
| -scheme "CF Cache Status" \ | |
| -destination "platform=macOS" \ | |
| CODE_SIGN_IDENTITY="-" \ | |
| CODE_SIGNING_REQUIRED=NO | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: lts/* | |
| - name: Lint JavaScript | |
| run: | | |
| for file in "CF Cache Status/CF Cache Status Extension/Resources/"*.js \ | |
| "CF Cache Status/CF Cache Status Extension/"*.js; do | |
| if [ -f "$file" ]; then | |
| echo "Checking: $file" | |
| node --check "$file" | |
| fi | |
| done | |
| - name: Run CDN detection tests | |
| run: node tests/cdn-detection.test.js | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.x' | |
| - name: Validate manifest.json | |
| run: | | |
| python3 -c " | |
| import json | |
| import sys | |
| with open('CF Cache Status/CF Cache Status Extension/Resources/manifest.json') as f: | |
| manifest = json.load(f) | |
| required = ['manifest_version', 'name', 'version', 'permissions'] | |
| missing = [k for k in required if k not in manifest] | |
| if missing: | |
| print(f'Missing required fields: {missing}') | |
| sys.exit(1) | |
| print('manifest.json is valid') | |
| print(f' Name: {manifest[\"name\"]}') | |
| print(f' Version: {manifest[\"version\"]}') | |
| " |