Skip to content

chore: straight forward replace of yarn with npm #728

chore: straight forward replace of yarn with npm

chore: straight forward replace of yarn with npm #728

Workflow file for this run

name: release
on:
push:
branches:
- 'main'
- 'beta'
- 'alpha'
pull_request: {}
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.6.0
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'
cache-dependency-path: 'package-lock.json'
- name: Install deps
run: npm ci --audit=false --fund=false
- name: Check for regressions
run: npm run lint
- name: Check build health
run: npm run build
- name: Check for SSR compat
run: node dist/index.cjs && node dist/index.js
- name: Check NPM config
run: npx publint@latest dist
release:
needs: test
runs-on: ubuntu-latest
if: ${{ github.repository == 'pmndrs/three-stdlib' && contains('refs/heads/main,refs/heads/beta,refs/heads/alpha',github.ref) && github.event_name == 'push' }}
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.6.0
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'
cache-dependency-path: 'package-lock.json'
- name: Install deps
# this runs a build script so there is no dedicated build
run: npm ci --audit=false --fund=false
- name: Check build health
run: npm run build
- name: 馃殌 Release
uses: cycjimmy/semantic-release-action@v2
with:
semantic_version: 17
extra_plugins: |
@semantic-release/git
branches: |
[
'main',
{name: 'beta', prerelease: true},
{name: 'alpha', prerelease: true}
]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}