Skip to content

fix: adjust import path to account for function specific directory #5590

fix: adjust import path to account for function specific directory

fix: adjust import path to account for function specific directory #5590

Workflow file for this run

---
name: Lint
on:
push:
branches:
- main
pull_request:
branches:
- '**'
- '!release-please--**'
jobs:
lint:
name: Lint
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- name: Read primary Node version
id: node
run: echo "version=$(yq eval '.primary_node_version' .github/test-matrix.yml)" >> "$GITHUB_OUTPUT"
- uses: actions/setup-node@v6
with:
node-version: ${{ steps.node.outputs.version }}
cache: npm
- name: Install dependencies
run: npm ci --no-audit
- name: Lint
run: npm run lint