Skip to content

Initial commit

Initial commit #423

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- '**'
- '!main'
tags-ignore:
- '*.*'
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
cache-dependency-path: 'yarn.lock'
- name: Install dependencies
run: yarn --immutable
- name: Publish pre-release
run: node release.js --version=prerelease --dry-run=true
shell: bash
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}
NPM_CONFIG_PROVENANCE: true