Skip to content

Allow building with BuildKit #889

Allow building with BuildKit

Allow building with BuildKit #889

Workflow file for this run

name: Lint
on:
pull_request:
branches: [ main ]
jobs:
lint:
runs-on: ubuntu-22.04
steps:
- name: Code checkout
uses: actions/checkout@v3
- name: Install NodeJS
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install dependencies
run: npm ci --omit=optional
- name: Code linting
run: npm run lint:ci