This repository has been archived by the owner on Dec 9, 2024. It is now read-only.
Downgrade node version #50
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish to npm 🚀 | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
# - name: Cache dependencies | |
# uses: actions/cache@v2 | |
# with: | |
# path: | | |
# ~/.npm | |
# ~/.cache/yarn | |
# key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} | |
# restore-keys: | | |
# ${{ runner.os }}-node- | |
- name: Install dependencies | |
run: yarn install | |
# - name: Verify TypeScript setup | |
# run: yarn tsc --noEmit | |
- name: Build | |
run: yarn build | |
- name: Set npm Config | |
run: npm config set //registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }} | |
- name: Publish to npm | |
run: npm publish --access public |