Skip to content

Always print banner before error (#46) #61

Always print banner before error (#46)

Always print banner before error (#46) #61

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
release:
if: ${{ github.repository_owner == 'onlineornot' }}
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js 16.13
uses: actions/setup-node@v3
with:
node-version: 16.13
cache: "npm" # cache ~/.npm in case 'npm ci' needs to run
- name: Install NPM Dependencies
run: npm ci
- name: Check the build
run: npm run build
- name: Check for other errors
run: npm run check
env:
NODE_OPTIONS: "--max_old_space_size=8192"
- name: Create Version PR or Publish to NPM
id: changesets
uses: changesets/action@v1
with:
version: node .github/changeset-version.js
publish: npx changeset publish
env:
GITHUB_TOKEN: ${{ secrets.ONLINEORNOT_GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
NODE_ENV: "production"