Skip to content

Commit

Permalink
Change: update pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
NobleMajo committed Jun 9, 2024
1 parent 658fa13 commit 88a40a4
Show file tree
Hide file tree
Showing 3 changed files with 71 additions and 2 deletions.
69 changes: 69 additions & 0 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
name: NPM Publish

on:
push:
branches: [ "main" ]
paths:
- 'package.json'

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [20.x]

steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run build --if-present
- run: npm run test --if-present
- uses: actions/upload-artifact@v4
with:
name: build-artifacts
path: dist

# publish-gpr:
# needs: build
# runs-on: ubuntu-latest
# permissions:
# contents: read
# packages: write
# steps:
# - uses: actions/checkout@v4
# - uses: actions/setup-node@v3
# with:
# node-version: 20
# - uses: actions/download-artifact@v4
# with:
# name: build-artifacts
# path: dist
# - run: |
# npm config set registry "https://npm.pkg.github.com/"
# npm config set scope "@${{ github.repository_owner }}"
# npm publish
# env:
# NODE_AUTH_TOKEN: ${{ github.token }}

publish-npm:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 20
registry-url: https://registry.npmjs.org/
- uses: actions/download-artifact@v4
with:
name: build-artifacts
path: dist
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@noblemajo/serve",
"version": "1.0.1",
"version": "1.0.2",
"description": "Automatic hot reloading webserver based on file watcher, websocket and id endpoint",
"type": "module",
"main": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export function createReloadHtmlCode(
location.reload()
}

await new Promise<void>((res) => setTimeout(res, 400))
await new Promise<void>((res) => setTimeout(res, 800))
} catch (err) {
console.log(
"Error in @noblemajo/serve loop:\n",
Expand Down

0 comments on commit 88a40a4

Please sign in to comment.