Skip to content

chore: Regenerate package-lock.json #74

chore: Regenerate package-lock.json

chore: Regenerate package-lock.json #74

Workflow file for this run

name: build
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'
# Install dependencies
- run: npm ci --force
# Lint
- run: npm run lint -- --quiet
# Build and send bundle stats and CI information to RelativeCI
- run: npm run build
env:
RELATIVE_CI_KEY: ${{ secrets.RELATIVE_CI_KEY }}