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 61fe3e5
Show file tree
Hide file tree
Showing 12 changed files with 2,294 additions and 2,752 deletions.
11 changes: 0 additions & 11 deletions .eslintrc.json

This file was deleted.

20 changes: 7 additions & 13 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,30 +7,24 @@ 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
- name: Install and build
run: npm ci

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

- name: Lint
run: npm run lint

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

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

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

- 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 61fe3e5

Please sign in to comment.