diff options
| author | Andreas Nedbal <andreas.nedbal@in2code.de> | 2022-04-02 15:52:26 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-02 22:52:26 +0900 |
| commit | f9b5d921767567718595f691d55f9efade1fe338 (patch) | |
| tree | c2a26140e97d4ede3df1fbd30a850cc804bd8021 /.github/workflows | |
| parent | Update CHANGELOG.md (diff) | |
| download | sharkey-f9b5d921767567718595f691d55f9efade1fe338.tar.gz sharkey-f9b5d921767567718595f691d55f9efade1fe338.tar.bz2 sharkey-f9b5d921767567718595f691d55f9efade1fe338.zip | |
Fix: Adjust ESLint calls to properly interpret globs (#8462)
* fix(backend): rename .eslintrc.js to .eslintrc.cjs
* fix(backend): wrap lint path glob in quotation marks
* fix(client): wrap lint path glob in quotation marks
* chore(workflow): make lint workflow use Node 16
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/lint.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 9ba110f776..74f9a4e532 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -16,7 +16,7 @@ jobs: submodules: true - uses: actions/setup-node@v1 with: - node-version: 12.x + node-version: 16.x - uses: actions/cache@v2 with: path: '**/node_modules' |