Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V1.1.3 #4

Merged
merged 3 commits into from
Jan 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '14'
node-version: '16'

- name: Install dependencies
run: npm install
Expand All @@ -40,7 +40,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '14'
node-version: '16'
- name: Install dependencies
run: npm install
- name: Build
Expand All @@ -49,13 +49,12 @@ jobs:
publish:
needs: build
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main' && startsWith(github.event.head_commit.message, 'release')
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '14'
node-version: '16'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: npm install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
node-version: '16'

- name: Install dependencies
run: npm install
Expand Down
1 change: 1 addition & 0 deletions Readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# fancy-collections [🌟✨⭐]

[![MIT License](https://img.shields.io/badge/License-MIT-green.svg)](https://choosealicense.com/licenses/mit/)
[![codecov](https://codecov.io/gh/avfirsov/fancy-collections/graph/badge.svg?token=CR7Y17309G)](https://codecov.io/gh/avfirsov/fancy-collections)

`fancy-collections` is a small library easing most common operations on collections. 100% type safe. Extremely user-friendly API

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fancy-collections",
"version": "1.1.0",
"version": "1.1.3",
"description": "A small collection of perfectly typed handy tools for everyday work with collections",
"publishConfig": {
"access": "public"
Expand Down
Loading