Skip to content

Commit

Permalink
Update dev dependencies.
Browse files Browse the repository at this point in the history
Update github workflows.
Update badges in main ReadMe.
  • Loading branch information
pcafstockf committed Jan 18, 2023
1 parent 1140e6c commit c545745
Show file tree
Hide file tree
Showing 7 changed files with 1,616 additions and 76 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,26 @@ name: CI

on:
push:
branches: [ master ]
branches: [ "master" ]
pull_request:
branches: [ master ]
branches: [ "master" ]

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [12.x]
node-version: [14.x, 16.x, 18.x]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- run: npm ci
- run: npm run build --if-present
- run: npm test
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:
pub-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 12
registry-url: https://registry.npmjs.org
node-version: 14
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm run build
- run: npm publish
Expand Down
7 changes: 6 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@
* Improve/enhance the type signature for find*.
* Add Pre/Post traversal constants for better code readability.

## 1.0.5 / 2022/11/19
## 1.0.6 / 2022/11/19
* Update dependencies.
* Remove david-dm based dependencies badge from ReadMe.

## 1.0.7 / 2023/01/18
Update dev dependencies.
Update github workflows.
Update badges in main ReadMe.
1 change: 1 addition & 0 deletions OSSMETADATA
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
osslifecycle=active
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# unist-utils-core
[![Actions Status](https://github.com/pcafstockf/unist-utils-core/workflows/CI/badge.svg)](https://github.com/pcafstockf/unist-utils-core/actions)
[![Actions Status](https://github.com/pcafstockf/unist-utils-core/workflows/NPM%20Publish/badge.svg)](https://github.com/pcafstockf/unist-utils-core/actions)
[![CI Actions](https://github.com/pcafstockf/unist-utils-core/workflows/CI/badge.svg)](https://github.com/pcafstockf/unist-utils-core/actions)
[![Publish Actions](https://github.com/pcafstockf/unist-utils-core/workflows/NPM%20Publish/badge.svg)](https://github.com/pcafstockf/unist-utils-core/actions)
[![npm version](https://badge.fury.io/js/unist-utils-core.svg)](https://badge.fury.io/js/unist-utils-core)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)
![OSS Lifecycle](https://img.shields.io/osslifecycle/pcafstockf/unist-utils-core.svg)

A collection of commonly used (albeit enhanced) algorithms based on [unist](https://github.com/syntax-tree/unist) and [unist-util-xxx](https://github.com/syntax-tree/unist#list-of-utilities).

Expand Down
Loading

0 comments on commit c545745

Please sign in to comment.