Skip to content

Commit

Permalink
test cd.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
pprunty committed Nov 29, 2023
1 parent d23ba01 commit cc66ab8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,24 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
name: Checkout Repository 🛒

- name: Setup Node.js (v16) 🚀
uses: actions/setup-node@v1
- name: Setup Node.js (v20) 🚀
uses: actions/setup-node@v3 🚀
with:
node-version: '16'
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'

- name: Install Dependencies 📦
run: yarn install
run: npm install

- name: Build Package 🏗️
run: yarn build
run: npm build

- run: npm ci

- name: Publish to npm 🚀
run: yarn publish
run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
1 change: 0 additions & 1 deletion .yarnrc

This file was deleted.

0 comments on commit cc66ab8

Please sign in to comment.