Skip to content

Bump @typescript-eslint/eslint-plugin from 5.56.0 to 6.8.0 #627

Bump @typescript-eslint/eslint-plugin from 5.56.0 to 6.8.0

Bump @typescript-eslint/eslint-plugin from 5.56.0 to 6.8.0 #627

Workflow file for this run

name: Integration Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/azure-functions/node:4-node18
env:
FUNCTIONS_WORKER_RUNTIME: node
steps:
- uses: actions/checkout@v4
- name: install-library
shell: bash
run: |
npm ci
- name: install-test-function
shell: bash
working-directory: ./example
run: |
npm ci && npm install -g azure-functions-core-tools@4 --unsafe-perm true
- name: start-test-function
shell: bash
working-directory: ./example
run: |
npm run start &
- name: test-function
shell: bash
run: |
npm run test:integration