Skip to content

fix: log action file path [EDS-269] #1

fix: log action file path [EDS-269]

fix: log action file path [EDS-269] #1

Workflow file for this run

name: PR Checks
on: [pull_request]
# This allows a subsequently queued workflow run to interrupt previous runs
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
name: Lint, Test and Build
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Install Node.js 20.x
uses: actions/setup-node@v4
with:
cache: 'npm'
node-version: 20.x
- name: Install Deps
run: npm ci
- name: Run Lint
run: npm run lint