Skip to content

chore(npm): disable package-lock generation #9

chore(npm): disable package-lock generation

chore(npm): disable package-lock generation #9

Workflow file for this run

name: Lint & Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18.x
- name: Install dependencies
run: npm install --no-package-lock
- name: Lint
run: npm run lint
- name: Build
run: npm run build