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

Update eslint: 8.24.0 → 8.37.0 (minor) #21

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
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
18 changes: 15 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,24 @@ on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: [ 16, 18 ]
steps:
- uses: actions/checkout@v2
- name: Install
- name: Checkout repository
uses: actions/checkout@v3

- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'npm'
cache-dependency-path: '**/package-lock.json'

- name: Install and build
run: |
npm install
npm run bootstrap
npm run build
- name: Run tests
run: npm run test
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,7 @@ audit. We welcome continued feedback on the usability, architecture, and securit
of this implementation.

## Mono Repo Install and Build
Run `npm install` to install dependencies, then `npm run bootstrap` to link the dependencies
in their respective packages. Afteward run `npm run build` to build the library.
Run `npm install` to install dependencies, then `npm run build` to build the library.
Development can occur on the `package/*` level with tests being run on each package itself.

To run all tests: `npm run test`
15 changes: 3 additions & 12 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,5 @@
{
"packages": [
"packages/siwe",
"packages/siwe-parser",
"package/siwe-test-package"
],
"npmClient": "npm",
"command": {
"publish": {
"registry": "https://npm.pkg.github.com"
}
},
"version": "1.1.3"
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"useWorkspaces": true,
"version": "independent"
}
Loading