Skip to content

Commit

Permalink
action edit
Browse files Browse the repository at this point in the history
  • Loading branch information
ErionTp committed Aug 16, 2023
1 parent 44f317b commit 8d821b6
Showing 1 changed file with 11 additions and 18 deletions.
29 changes: 11 additions & 18 deletions .github/workflows/npm-publish-github-packages.yml
Original file line number Diff line number Diff line change
@@ -1,59 +1,52 @@
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages

name: Node.js Package

on:
push:
branches:
- main # or master, depending on your default branch
- main

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
node-version: 16

- name: Cache dependencies
- name: Cache Node.js modules
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
path: node_modules
key: ${{ runner.OS }}-build-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
${{ runner.OS }}-build-
${{ runner.OS }}-
- name: Install dependencies
run: npm ci
working-directory: src # Make sure you install the dependencies in the src directory

#- run: npm test # Uncomment this when you have tests to run
# working-directory: src
#- name: Run Tests
# run: npm test

publish-npm:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
node-version: 16
registry-url: https://registry.npmjs.org/

- name: Install dependencies in src directory
- name: Install dependencies
run: npm ci
working-directory: src

- name: Publish package from src directory
- name: Publish package
run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
working-directory: src

- name: Print npm debug log
if: failure() # this step will only run if a previous step failed
if: failure()
run: cat /home/runner/.npm/_logs/*-debug.log

0 comments on commit 8d821b6

Please sign in to comment.