Skip to content

feat: default to 0.3 if version not provided (#511) #1140

feat: default to 0.3 if version not provided (#511)

feat: default to 0.3 if version not provided (#511) #1140

Workflow file for this run

name: Run Linter & Formatter
on:
push:
branches: [ "main", "epic/**" ]
pull_request:
branches: [ "main", "epic/**" ]
paths-ignore:
- '**.md'
- 'LICENSE'
- '.github/CODEOWNERS'
jobs:
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: 'https://registry.npmjs.org'
cache: 'npm'
cache-dependency-path: |
package-lock.json
src/samples/package-lock.json
- run: npm ci && (cd src/samples && npm ci)
- run: npm run lint:ci