Skip to content

Commit

Permalink
--amend
Browse files Browse the repository at this point in the history
  • Loading branch information
elijahbenizzy committed Feb 21, 2024
1 parent 2c4b3a3 commit dd6cf48
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
working-directory: telemetry/ui
strategy:
matrix:
node-version: [15.x]
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
Expand All @@ -28,5 +28,5 @@ jobs:
node-version: ${{ matrix.node-version }}
- run: npm install --ignore-scripts
- run: npm run build
- run: npm run lint
- run: npm run format
- run: npm run lint:fix
- run: npm run format:fix
4 changes: 2 additions & 2 deletions telemetry/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint .",
"lint:fix": "eslint . --fix --max-warnings=0 --config ./.eslintrc.js",
"format": "prettier --write ./**/*.{ts,tsx,css,md,json} --config ./.prettierrc.json",
"lint:fix": "eslint . --fix --max-warnings=0 --config ./.eslintrc.js --ignore-path ./.eslintignore",
"format:fix": "prettier --write ./**/*.{ts,tsx,css,md,json} --config ./.prettierrc.json --ignore-path ./.prettierignore",
"precommit": "npm run lint:fix && npm run format",
"prepush": "npm run lint"
},
Expand Down

0 comments on commit dd6cf48

Please sign in to comment.