Skip to content

Bump eslint from 9.38.0 to 9.39.1 #148

Bump eslint from 9.38.0 to 9.39.1

Bump eslint from 9.38.0 to 9.39.1 #148

Workflow file for this run

name: PR Checks
on:
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
name: Build and Test
steps:
- uses: actions/checkout@v4
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: '22.x'
- run: npm ci
- run: npm run build --if-present
- run: npm test
- uses: actions/upload-artifact@v4 # upload test results
if: success() || failure() # run this step even if previous step failed
with:
name: test-results
path: junit-report.xml