Skip to content

Commit

Permalink
chore(deps): update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
rbardini committed Aug 25, 2024
1 parent c12449d commit 414ab3b
Show file tree
Hide file tree
Showing 12 changed files with 2,292 additions and 2,748 deletions.
11 changes: 0 additions & 11 deletions .eslintrc.json

This file was deleted.

15 changes: 6 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,30 +7,27 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 16
node-version: 20

- name: Install
run: npm ci

- name: Type-check
run: npm run type-check

- name: Lint
run: npm run lint
- name: Format-check
run: npm run format -- --check

- name: Test
run: npm test -- --coverage

- name: Format-check
run: npm run format -- --check

- name: Build
run: npm run build

- name: Coverage
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
3 changes: 0 additions & 3 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx --no lint-staged
3 changes: 0 additions & 3 deletions .husky/pre-push
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npm test -- run
3 changes: 1 addition & 2 deletions .lintstagedrc.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
{
"*.js": ["eslint --fix", "prettier --write"],
"*.{css,html,json,md,yml}": "prettier --write"
"*.{css,html,js,json,md,yml}": "prettier --write"
}
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
lts/*
20
2 changes: 1 addition & 1 deletion editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { oneDark } from '@codemirror/theme-one-dark'
import { EditorView, keymap } from '@codemirror/view'
import { basicSetup } from 'codemirror'
import { debounce } from 'debounce'
import resume from 'resume-schema/sample.resume.json' assert { type: 'json' }
import resume from 'resume-schema/sample.resume.json' with { type: 'json' }

import './editor.css'
import { render } from './index.js'
Expand Down
Loading

0 comments on commit 414ab3b

Please sign in to comment.