Skip to content

Bump @typescript-eslint/eslint-plugin from 7.7.0 to 7.7.1 #31

Bump @typescript-eslint/eslint-plugin from 7.7.0 to 7.7.1

Bump @typescript-eslint/eslint-plugin from 7.7.0 to 7.7.1 #31

Workflow file for this run

name: Build and test
on:
pull_request:
branches: ["main"]
concurrency:
group: code-check-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Read node and npm versions from package.json
uses: skjnldsv/read-package-engines-version-actions@v3
id: package-engines-versions
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ steps.package-engines-versions.outputs.nodeVersion }}
- name: Install Dependencies
run: npm ci
env:
GPR_PRIVATE_READ_TOKEN: ${{ secrets.GPR_PRIVATE_READ_TOKEN }}
- name: Tests
run: npm run ci-test
- name: Formatting
run: npm run prettier:check