Skip to content

Commit

Permalink
chore: upgrade all deps 💣
Browse files Browse the repository at this point in the history
  • Loading branch information
robertrossmann committed Jan 13, 2025
1 parent 6981bea commit 35dfea7
Show file tree
Hide file tree
Showing 6 changed files with 6,159 additions and 3,806 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/commitlint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
CI: 'true'

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
CI: 'true'

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 20
node-version: 22
cache: npm

- run: make install
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
CI: 'true'

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: npm
Expand All @@ -47,18 +47,18 @@ jobs:
CI: 'true'

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 20
node-version: 22

- run: make install
- run: make compile
- run: make coverage

- uses: devmasx/coverage-check-action@v1.1.0
- uses: devmasx/coverage-check-action@v1.2.0
with:
type: lcov
result_path: coverage/lcov.info
Expand Down
8 changes: 0 additions & 8 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import * as os from 'os'
import nodev20 from '@strv/eslint-config-node/v20'

Check failure on line 1 in eslint.config.mjs

View workflow job for this annotation

GitHub Actions / verify (windows-2022, 18)

Expected linebreaks to be 'LF' but found 'CRLF'
import nodeopt from '@strv/eslint-config-node/optional'

Check failure on line 2 in eslint.config.mjs

View workflow job for this annotation

GitHub Actions / verify (windows-2022, 18)

Expected linebreaks to be 'LF' but found 'CRLF'
import nodestyle from '@strv/eslint-config-node/style'

Check failure on line 3 in eslint.config.mjs

View workflow job for this annotation

GitHub Actions / verify (windows-2022, 18)

Expected linebreaks to be 'LF' but found 'CRLF'
Expand All @@ -7,7 +6,6 @@ import tsoptional from '@strv/eslint-config-typescript/optional'
import tsstyle from '@strv/eslint-config-typescript/style'

Check failure on line 6 in eslint.config.mjs

View workflow job for this annotation

GitHub Actions / verify (windows-2022, 18)

Expected linebreaks to be 'LF' but found 'CRLF'
import mocha from '@strv/eslint-config-mocha'

Check failure on line 7 in eslint.config.mjs

View workflow job for this annotation

GitHub Actions / verify (windows-2022, 18)

Expected linebreaks to be 'LF' but found 'CRLF'

Check failure on line 8 in eslint.config.mjs

View workflow job for this annotation

GitHub Actions / verify (windows-2022, 18)

Expected linebreaks to be 'LF' but found 'CRLF'
const lbstyle = os.platform() === 'win32' ? 'windows' : 'unix'
const globs = {

Check failure on line 9 in eslint.config.mjs

View workflow job for this annotation

GitHub Actions / verify (windows-2022, 18)

Expected linebreaks to be 'LF' but found 'CRLF'
mjs: '**/*.mjs',

Check failure on line 10 in eslint.config.mjs

View workflow job for this annotation

GitHub Actions / verify (windows-2022, 18)

Expected linebreaks to be 'LF' but found 'CRLF'
ts: '**/*.ts',
Expand All @@ -34,12 +32,6 @@ const config = [
{ files: [globs.ts],
languageOptions: {
parserOptions: { project: './tsconfig.json' },
},
rules: {
// This repository is configured so that upon checkout, git should convert line endings to platform-specific
// defaults and convert them back to LF when checking in. As such, we must enforce CRLF endings on Windows,
// otherwise the lint task would fail on Windows systems.
'linebreak-style': ['error', lbstyle],
} },
]

Expand Down
Loading

0 comments on commit 35dfea7

Please sign in to comment.