Skip to content

Commit

Permalink
Swap standard for neostandard (#1109)
Browse files Browse the repository at this point in the history
* chore: swap standard for neostandard

* docs(readme): update badges

* chore: add `.npmrc` to disable lock file

* fix!: set engine range to `^20.9.0 || >=22.0.0`

* ci: set `fail-fast: false` to get all results
  • Loading branch information
voxpelli authored Sep 5, 2024
1 parent 3bdfe1a commit 98ed90e
Show file tree
Hide file tree
Showing 7 changed files with 137 additions and 135 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node-version: [16.x, 18.x, 20.x]
node-version: [20.x, 22.x]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package-lock=false
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

# mercurius

![CI workflow](https://github.com/mercurius-js/mercurius/workflows/CI%20workflow/badge.svg)
[![CI workflow](https://github.com/mercurius-js/mercurius/actions/workflows/ci.yml/badge.svg)](https://github.com/mercurius-js/mercurius/actions/workflows/ci.yml)
[![NPM version](https://img.shields.io/npm/v/mercurius.svg?style=flat)](https://www.npmjs.com/package/mercurius)
[![NPM downloads](https://img.shields.io/npm/dm/mercurius.svg?style=flat)](https://www.npmjs.com/package/mercurius)
[![neostandard javascript style](https://img.shields.io/badge/code_style-neostandard-brightgreen?style=flat)](https://github.com/neostandard/neostandard)

Mercurius is a [**GraphQL**](https://graphql.org/) adapter for [**Fastify**](https://www.fastify.io)

Expand Down
5 changes: 5 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
'use strict'

module.exports = require('neostandard')({
ts: true,
})
Loading

0 comments on commit 98ed90e

Please sign in to comment.