Skip to content

Update dependency rollup to v4.29.0 #683

Update dependency rollup to v4.29.0

Update dependency rollup to v4.29.0 #683

Workflow file for this run

name: build
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
fetch-depth: "0"
- uses: actions/setup-node@v4
with:
node-version: 18
registry-url: 'https://registry.npmjs.org'
scope: '@contentgrid'
- run: |
corepack enable
yarn install --frozen-lockfile
- name: Build
run: yarn build
- name: Test
run: yarn test
- name: Publish
if: ${{ github.ref_type == 'tag' }}
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run:
yarn lerna publish ${{ github.ref_name }} --yes --no-push --no-git-tag-version --force-publish