Skip to content

Publish to npm without a stored token #2

Publish to npm without a stored token

Publish to npm without a stored token #2

Workflow file for this run

name: tests
on:
push:
branches: [1.x, develop]
tags: ["v*"]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
name: Build and format check
steps:
- uses: actions/checkout@v5
- name: Setup Node
uses: actions/setup-node@v5
with:
node-version-file: .nvmrc
cache: npm
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Check formatting
run: npm run prettier:check
- name: Build
run: npm run build