Skip to content

chore(deps): update node.js to v22 #481

chore(deps): update node.js to v22

chore(deps): update node.js to v22 #481

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 }}