Skip to content
This repository has been archived by the owner on Dec 6, 2024. It is now read-only.

feat: clean up dependencies and the project overall #1

feat: clean up dependencies and the project overall

feat: clean up dependencies and the project overall #1

Workflow file for this run

name: CI/CD
on: push
jobs:
automation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v1
with:
always-auth: true
node-version: '20.x'
registry-url: //npm.pkg.github.com/
- name: Cache node modules
uses: actions/cache@v2
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: yarn-${{ hashFiles('yarn.lock') }}
- name: Install packages
run: npm install
- name: Build
run: npm run build
- name: Release
env:
GITHUB_TOKEN: ${{ github.token }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm run release