Skip to content

Bump braces from 3.0.2 to 3.0.3 in the npm_and_yarn group (#101) #198

Bump braces from 3.0.2 to 3.0.3 in the npm_and_yarn group (#101)

Bump braces from 3.0.2 to 3.0.3 in the npm_and_yarn group (#101) #198

Workflow file for this run

name: Build
on: [push]
jobs:
build:
name: Build & Release
runs-on: ubuntu-latest
permissions:
contents: "read"
packages: "write"
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: "npm"
- run: npm install
- run: npm run build
- run: npm run test
- run: node ./scripts/prepare-package.mjs ${{ github.ref }}
if: startsWith(github.ref, 'refs/tags/v')
# Publish Modules
- run: npm publish
if: startsWith(github.ref, 'refs/tags/v')
working-directory: ./dist
env:
NODE_AUTH_TOKEN: ${{ secrets.GH_CUSTOM_TOKEN }}