Skip to content

chore: update Node.js version in GitHub Actions workflow to 20.x #4

chore: update Node.js version in GitHub Actions workflow to 20.x

chore: update Node.js version in GitHub Actions workflow to 20.x #4

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20.x'
cache: 'yarn'
- name: Debug Environment
run: env
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run Semantic Release
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: yarn release