Skip to content

0.0.19

0.0.19 #20

Workflow file for this run

name: Publish
on:
release:
types: [created]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- run: npx prettier . --check
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- run: yarn install --immutable --immutable-cache --check-cache
- run: yarn run tsc -p tsconfig.json
- run: yarn run tsc -p tsconfig.bin.json
- name: Archive build artifacts
uses: actions/upload-artifact@v4
with:
name: dist
path: |
dist
publish-gpr:
needs: build
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
registry-url: https://npm.pkg.github.com/
# - name: Download build artifacts
# uses: actions/download-artifact@v4
# with:
# name: dist
# path: dist
- run: yarn install --immutable --immutable-cache --check-cache
- run: yarn run tsc
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
publish-npm:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
registry-url: "https://registry.npmjs.org"
scope: "@csbnlu"
# - name: Download build artifacts
# uses: actions/download-artifact@v4
# with:
# name: dist
# path: dist
- run: yarn install --immutable --immutable-cache --check-cache
- run: yarn run tsc
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}