Skip to content

chore(deps): update dependency @types/node to v20.16.2 #405

chore(deps): update dependency @types/node to v20.16.2

chore(deps): update dependency @types/node to v20.16.2 #405

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- '**'
- '!main'
tags-ignore:
- '*.*'
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
id-token: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
cache-dependency-path: 'yarn.lock'
- name: Install dependencies
run: yarn --immutable
- name: Build
run: yarn build:all
- name: Creating .npmrc
run: |
cat << EOF > "$HOME/.npmrc"
//registry.npmjs.org/:_authToken=$NPM_TOKEN
EOF
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Release
run: yarn changeset publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}