Skip to content

Commit 6f345e9

Browse files
authored
Remove 1 incorrect dep; update github actions
1 parent 0d9c443 commit 6f345e9

File tree

5 files changed

+163
-36
lines changed

5 files changed

+163
-36
lines changed

.github/workflows/checkout-and-lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
strategy:
1212
matrix:
13-
node-version: [14.x]
13+
node-version: [18.13]
1414

1515
steps:
1616
- uses: actions/checkout@v2
@@ -19,5 +19,5 @@ jobs:
1919
with:
2020
node-version: ${{ matrix.node-version }}
2121
- name: Install dependencies and run lint
22-
run: npm ci
22+
run: npm run build:dev:ci
2323
- run: npm run lint

.github/workflows/checkout-install-dep-build-dev-prod.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
strategy:
2222
matrix:
23-
node-version: [14.x]
23+
node-version: [18.13]
2424

2525
steps:
2626
- uses: actions/checkout@v2
@@ -41,7 +41,7 @@ jobs:
4141
with:
4242
node-version: ${{ matrix.node-version }}
4343
- name: Install dependencies
44-
run: npm ci
44+
run: npm run build:dev:ci
4545
- name: Run build:dev
4646
run: npm run build:dev
4747
- name: Run build:prod

.github/workflows/playwright.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
- uses: actions/checkout@v2
1313
- uses: actions/setup-node@v2
1414
with:
15-
node-version: '14.x'
15+
node-version: '18.13'
1616
- name: Install dependencies
17-
run: npm ci
17+
run: npm run build:dev:ci
1818
- name: Install Playwright
1919
run: npx playwright install --with-deps
2020
- uses: actions/upload-artifact@v2

package-lock.json

Lines changed: 157 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@
5050
},
5151
"dependencies": {
5252
"@date-io/dayjs": "^1.3.13",
53-
"@fluentui/react": "^8.106.10",
5453
"@material-ui/core": "^4.12.3",
5554
"@material-ui/icons": "^4.11.2",
5655
"@material-ui/lab": "^4.0.0-alpha.60",

0 commit comments

Comments
 (0)