Skip to content

Commit f0055ea

Browse files
committed
Release v1.3.3
1 parent 852996b commit f0055ea

File tree

6 files changed

+14
-12
lines changed

6 files changed

+14
-12
lines changed

.github/workflows/release-on-vtag.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
1-
name: release
1+
name: Create Release
2+
23
on:
34
push:
45
tags:
56
- 'v*'
7+
68
jobs:
79
build:
8-
name: Create Release
910
runs-on: ubuntu-latest
1011
steps:
11-
- uses: actions/checkout@v3
12-
- uses: actions/create-release@v1
12+
- uses: actions/checkout@v4 #see: https://github.com/actions/checkout/releases
13+
- uses: actions/create-release@v1 #see: https://github.com/actions/create-release/releases
1314
env:
1415
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
1516
with:
Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
name: build
1+
name: Build and Run Specifications
2+
23
on: [push]
4+
35
jobs:
46
build:
5-
name: Run Specifications
67
runs-on: ubuntu-latest
78
steps:
8-
- uses: actions/checkout@v3
9-
- uses: actions/setup-node@v3
9+
- uses: actions/checkout@v4 #see: https://github.com/actions/checkout/releases
10+
- uses: actions/setup-node@v4 #see: https://github.com/actions/setup-node/releases
1011
- run: npm install
1112
- run: npm test

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ _Simple utility to go to a URL and wait for the HTTP response_
55

66
[![License:MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://github.com/center-key/puppeteer-browser-ready/blob/main/LICENSE.txt)
77
[![npm](https://img.shields.io/npm/v/puppeteer-browser-ready.svg)](https://www.npmjs.com/package/puppeteer-browser-ready)
8-
[![Build](https://github.com/center-key/puppeteer-browser-ready/workflows/build/badge.svg)](https://github.com/center-key/puppeteer-browser-ready/actions/workflows/run-spec-on-push.yaml)
8+
[![Build](https://github.com/center-key/puppeteer-browser-ready/actions/workflows/run-spec-on-push.yaml/badge.svg)](https://github.com/center-key/puppeteer-browser-ready/actions/workflows/run-spec-on-push.yaml)
99

1010
**puppeteer-browser-ready** is a helper utility to reduce the amount of boilerplate code needed
1111
to tell Puppeteer to visit a web page and and retrieve the HTML. 

dist/puppeteer-browser-ready.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! puppeteer-browser-ready v1.3.2 ~~ https://github.com/center-key/puppeteer-browser-ready ~~ MIT License
1+
//! puppeteer-browser-ready v1.3.3 ~~ https://github.com/center-key/puppeteer-browser-ready ~~ MIT License
22

33
import { Browser, HTTPResponse, Page } from 'puppeteer';
44
import { HTMLElement } from 'node-html-parser';

dist/puppeteer-browser-ready.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! puppeteer-browser-ready v1.3.2 ~~ https://github.com/center-key/puppeteer-browser-ready ~~ MIT License
1+
//! puppeteer-browser-ready v1.3.3 ~~ https://github.com/center-key/puppeteer-browser-ready ~~ MIT License
22

33
import { parse } from 'node-html-parser';
44
import express from 'express';

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "puppeteer-browser-ready",
3-
"version": "1.3.2",
3+
"version": "1.3.3",
44
"description": "Simple utility to go to a URL and wait for the HTTP response",
55
"license": "MIT",
66
"type": "module",

0 commit comments

Comments
 (0)