Make file paths case-insensitive across OS #41
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
# Modified from: actions/typescript-action | |
name: CI | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
permissions: | |
checks: write | |
jobs: | |
test-typescript: | |
name: TypeScript Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: npm | |
- name: Setup java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '11.0.22+7' | |
distribution: 'temurin' | |
java-package: 'jre' | |
- name: Install Dependencies | |
run: npm ci | |
- name: Generate Antlr4 Parser and Lexer | |
run: npm run antlr4ng | |
- name: Check Format | |
run: npm run format:check | |
- name: Lint | |
run: npm run lint | |
- name: Test | |
run: npm run test | |
- name: Build dist/ Directory | |
run: npm run bundle | |
- name: Compare Directories | |
id: diff | |
run: | | |
if [ "$(git diff --ignore-space-at-eol --text dist/ | wc -l)" -gt "0" ]; then | |
echo "Detected uncommitted changes after build. See status below:" | |
git diff --ignore-space-at-eol --text dist/ | |
exit 1 | |
fi | |
# If `dist/` was different than expected, upload the expected version as artifact | |
- if: ${{ failure() && steps.diff.outcome == 'failure' }} | |
name: Upload Artifact | |
id: upload | |
uses: actions/upload-artifact@v4 | |
with: | |
name: dist | |
path: dist/ | |
test-action: | |
name: GitHub Actions Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Test Local Action | |
uses: ./ | |
with: | |
patchName: testing | |
rootPath: .github/workflows/live |