Skip to content

Commit

Permalink
Enclose all version numbers in single quotes: avoids errors like vers…
Browse files Browse the repository at this point in the history
…ion: 1.20 parsing as 1.2.
  • Loading branch information
Matthew-Grayson committed Mar 13, 2024
1 parent c7c3289 commit 8261ab6
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: '18'
- name: Restore npm cache
uses: actions/cache@v3
with:
Expand All @@ -46,7 +46,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: '18'
- name: Restore npm cache
uses: actions/cache@v3
with:
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: '18'
- name: Restore npm cache
uses: actions/cache@v3
with:
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
- name: Set up Python 3.10
uses: actions/setup-python@v5.0.0
with:
python-version: 3.10
python-version: '3.10'
- uses: actions/cache@v3
with:
path: ~/.cache/pip
Expand All @@ -125,7 +125,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: '18'
- name: Restore npm cache
uses: actions/cache@v3
with:
Expand All @@ -147,7 +147,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: '18'
- name: Restore npm cache
uses: actions/cache@v3
with:
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: '18'
- name: Restore npm cache
uses: actions/cache@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: '18'
- name: Restore npm cache
uses: actions/cache@v3
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: '18'
- name: Restore npm cache
uses: actions/cache@v3
with:
Expand All @@ -37,7 +37,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: '18'
- name: Restore npm cache
uses: actions/cache@v3
with:
Expand All @@ -57,7 +57,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: '18'
- name: Restore npm cache
uses: actions/cache@v3
with:
Expand All @@ -78,7 +78,7 @@ jobs:
- name: Set up Python 3.10
uses: actions/setup-python@v5.0.0
with:
python-version: 3.10
python-version: '3.10'
- uses: actions/cache@v3
with:
path: ~/.cache/pip
Expand Down
2 changes: 1 addition & 1 deletion backend/.eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ extends:
- plugin:@typescript-eslint/eslint-recommended
plugins: [prettier, '@typescript-eslint']
parserOptions:
ecmaVersion: 2018
ecmaVersion: '2018'
sourceType: module
rules:
prettier/prettier: error
Expand Down
2 changes: 1 addition & 1 deletion frontend/.eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ plugins:
parserOptions:
ecmaFeatures:
jsx: true
ecmaVersion: 2018
ecmaVersion: '2018'
sourceType: module
rules:
prettier/prettier: error
Expand Down

0 comments on commit 8261ab6

Please sign in to comment.