Skip to content

Commit

Permalink
ci: update node version
Browse files Browse the repository at this point in the history
  • Loading branch information
yeonjuan committed Nov 23, 2023
1 parent 80232e4 commit 5d5cfbc
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
node-version: 18.16.1
- name: Install
run: yarn install --frozen-lockfile
run: yarn install --immutable
- name: Build
run: yarn build
- name: Unit Tests
Expand Down
2 changes: 1 addition & 1 deletion docs/rules.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!-- This file is generated by npm run docs command. Don't edit this -->
<!-- This file is generated by 'yarn docs' command. Don't edit this -->

# Rules

Expand Down
4 changes: 2 additions & 2 deletions packages/web-linter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
},
"scripts": {
"line": "eslint .",
"dev": "rollup --config && npm run post",
"build": "rollup --config && npm run post",
"dev": "rollup --config && yarn post",
"build": "rollup --config && yarn post",
"post": "node ./postprocess.js"
},
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/website/scripts/generates/markdowns.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function generateRulesMarkdown() {

const lines = [];
lines.push(
"<!-- This file is generated by npm run docs command. Don't edit this -->"
"<!-- This file is generated by 'yarn docs' command. Don't edit this -->"
);
lines.push("# Rules");

Expand Down

0 comments on commit 5d5cfbc

Please sign in to comment.