Skip to content

Commit

Permalink
Merge pull request #651 from react-icons/fix-project-settings
Browse files Browse the repository at this point in the history
Fix project settings
  • Loading branch information
kamijin-fanta committed Nov 28, 2022
2 parents 42e1ed0 + 9ab8cb2 commit 66bcd1e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
**/public/*
packages/react-icons/lib/
packages/react-icons/build/
packages/react-icons/src/icons/*
!packages/react-icons/src/icons/index.js
packages/react-icons/icons/*
!packages/react-icons/icons/index.js
packages/_react-icons_all/
packages/_react-icons_all-files/
8 changes: 7 additions & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Node.js CI

on: [push]
"on":
- push
- pull_request

jobs:
build:
Expand Down Expand Up @@ -30,6 +32,10 @@ jobs:
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn --immutable
- name: Formatter
run: yarn format:ci
- name: Lint
run: yarn lint
- name: Build Packages
run: BASE_PATH=/react-icons ./build-script.sh
- uses: actions/upload-artifact@v3
Expand Down
4 changes: 3 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
{
"search.exclude": {
"**/packages/react-icons/src/icons/*/**": true
"**/packages/react-icons/src/icons/*/**": true,
"**/packages/_react-icons_all/*/**": true,
"**/packages/_react-icons_all-files/*/**": true
},
"editor.codeActionsOnSave": {
"source.fixAll": true
Expand Down

0 comments on commit 66bcd1e

Please sign in to comment.