Skip to content

Merge pull request #1 from RedHatProductSecurity/OSIDB-3712 #10

Merge pull request #1 from RedHatProductSecurity/OSIDB-3712

Merge pull request #1 from RedHatProductSecurity/OSIDB-3712 #10

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
type-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 'lts/iron' # '20.x'
cache: 'yarn'
- run: yarn install --frozen-lockfile
- run: yarn type-check
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 'lts/iron' # '20.x'
cache: 'yarn'
- run: yarn install --frozen-lockfile
- run: yarn lint