Skip to content

chore: regenerate package-lock.json #38

chore: regenerate package-lock.json

chore: regenerate package-lock.json #38

Workflow file for this run

name: Build
on:
workflow_dispatch:
push:
pull_request:
types: [opened, synchronize]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
registry-url: https://registry.npmjs.org/
- name: Cache node modules
id: cache
uses: actions/cache@v4
env:
cache-name: cache-node-modules
with:
path: '**/node_modules'
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: npm ci
- name: Build from source
run: npm run build