Skip to content

Bump @typescript-eslint/parser from 8.15.0 to 8.16.0 #320

Bump @typescript-eslint/parser from 8.15.0 to 8.16.0

Bump @typescript-eslint/parser from 8.15.0 to 8.16.0 #320

Workflow file for this run

name: Tests
on:
push:
branches:
- main
- "releases/**"
paths:
- "src/**"
- "package.json"
- "package-lock.json"
pull_request:
branches:
- main
jobs:
relabel:
name: Relabeler Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Dump GitHub context
if: success()
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
- name: Check for changes in dist folder
if: success() && github.event_name == 'pull_request'
run: |
git remote -v
git fetch origin ${{ github.base_ref }}
echo "Commits in diff:"
git log --oneline origin/${{ github.base_ref }}..HEAD
echo "Files in diff:"
git diff --name-only origin/${{ github.base_ref }}..HEAD
if git diff --name-only origin/${{ github.base_ref }}..HEAD | grep -q "^dist/"; then
echo "::error::Changes detected in the dist folder. It is not allowed to push dist in a pull request."
exit 1
fi
- name: Setup Node.js
if: success()
uses: actions/setup-node@v4
with:
node-version: "20.x"
- name: Install dependencies
if: success()
run: npm ci
- name: Build project
id: build
if: success()
run: npm run build
- name: Test
id: test
if: success()
run: |
npm run test:ci
- name: Upload coverage to Codecov
if: always()
uses: codecov/codecov-action@v5
with:
files: ./coverage/lcov.info # cSpell: ignore lcov
#token: ${{ secrets.CODECOV_TOKEN }}
#token: ${{ env.CODECOV_TOKEN }}
flags: unittests # cSpell: ignore unittests
name: relabeler-tests
verbose: true
fail_ci_if_error: true
env:
CODECOV_TOKEN: ${{ vars.CODECOV_TOKEN }}
- name: Upload test results to Codecov
if: always()
uses: codecov/test-results-action@v1
with:
files: ./testResults/junit.xml
flags: unittests
name: relabeler-tests-results
verbose: true
fail_ci_if_error: true
#token: ${{ env.CODECOV_TOKEN }}
env:
CODECOV_TOKEN: ${{ vars.CODECOV_TOKEN }}
- name: Create artifact
if: steps.build.outcome == 'success'
run: |
mkdir artifact
cp -r dist package.json package-lock.json artifact/
- name: Upload artifact
if: steps.build.outcome == 'success'
uses: actions/upload-artifact@v4
with:
name: build-artifact
path: artifact/
- name: Run Relabeler
if: steps.test.outcome == 'success'
id: relabeler
uses: ./ # This uses the action from the root of the branch or PR
with:
who-to-greet: "GitHub"
repositoryToken: ${{ secrets.GITHUB_TOKEN }}
- name: Print Relabeler Outputs
if: success()
run: |
echo "Repository: ${{ steps.relabeler.outputs.repository }}"
echo "Time: ${{ steps.relabeler.outputs.time }}"