Skip to content

Commit

Permalink
update branch (#1059)
Browse files Browse the repository at this point in the history
* update branch

* comment
  • Loading branch information
juanri0s authored Nov 20, 2024
1 parent a1acccd commit 387b0d9
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Test
on:
push:
branches: # Array of patterns that match refs/heads
- master # Push events on master branch
- main # Push events on main branch
pull_request: # Specify a second event with pattern matching
env:
CI: true
Expand Down Expand Up @@ -33,7 +33,9 @@ jobs:
- run: npm run examples
- run: npm run benchmarks
- name: Coveralls GitHub Action
uses: coverallsapp/github-action@master
# Per Actions best practices, SHA is the safest for third party actions
# https://github.com/coverallsapp/github-action/releases/tag/v2.3.4
uses: coverallsapp/github-action@cfd0633edbd2411b532b808ba7a8b5e04f76d2c8
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: run-unit-${{ matrix.node-version }}
Expand All @@ -44,7 +46,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@master
# Per Actions best practices, SHA is the safest for third party actions
# https://github.com/coverallsapp/github-action/releases/tag/v2.3.4
uses: coverallsapp/github-action@cfd0633edbd2411b532b808ba7a8b5e04f76d2c8
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
</p>

[![npm version](https://img.shields.io/npm/v/fast-csv.svg)](https://www.npmjs.org/package/fast-csv)
[![Build Status](https://travis-ci.org/C2FO/fast-csv.svg?branch=master)](https://travis-ci.org/C2FO/fast-csv)
[![Coverage Status](https://coveralls.io/repos/github/C2FO/fast-csv/badge.svg?branch=master)](https://coveralls.io/github/C2FO/fast-csv?branch=master)
[![Coverage Status](https://coveralls.io/repos/github/C2FO/fast-csv/badge.svg?branch=master)](https://coveralls.io/github/C2FO/fast-csv?branch=main)
[![Known Vulnerabilities](https://snyk.io/test/github/C2FO/fast-csv/badge.svg?targetFile=package.json)](https://snyk.io/test/github/C2FO/fast-csv?targetFile=package.json)

# Fast-csv
Expand All @@ -27,18 +26,18 @@ See [installation docs](https://c2fo.github.io/fast-csv/docs/introduction/instal
## Packages


* `fast-csv` - One stop shop for all methods and options from `@fast-csv/format` and `@fast-csv/parse`. [Get Started!](https://c2fo.github.io/fast-csv/docs/introduction/getting-started)
* `fast-csv` - One-stop shop for all methods and options from `@fast-csv/format` and `@fast-csv/parse`. [Get Started!](https://c2fo.github.io/fast-csv/docs/introduction/getting-started)
* `@fast-csv/parse` - Parsing package, use this if you only need to parse files. [Get Started!](https://c2fo.github.io/fast-csv/docs/parsing/getting-started)
* `@fast-csv/format` - Formatting package, use this if you only need to format files. [Get Started!](https://c2fo.github.io/fast-csv/docs/formatting/getting-started)

## License

MIT <https://github.com/C2FO/fast-csv/raw/master/LICENSE>
MIT <https://github.com/C2FO/fast-csv/raw/main/LICENSE>

## Meta
* Code: `git clone git://github.com/C2FO/fast-csv.git`
* Website: <http://c2fo.com>
* Twitter: [http://twitter.com/c2fo](http://twitter.com/c2fo) - 877.465.4045
* X: [http://x.com/c2fo](http://twitter.com/c2fo) - 877.465.4045



0 comments on commit 387b0d9

Please sign in to comment.