Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix client ci #1954

Merged
merged 3 commits into from
Apr 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 6 additions & 9 deletions .github/workflows/ci-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,13 @@ jobs:
env:
INSTALL_NODE_MODULES: true
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Setup Environment
run: ./scripts/ci-install.sh
- name: Start Services
run: ./scripts/ci-start-services.sh
cache: npm
# avoid file watch limit error
- run: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
- run: npm list || true
- name: test
run: npm run test
- run: npm ci
- run: npm run test
- run: npm run lint
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ export class AssignmentsList extends React.PureComponent<IProps, {loading: true}
onClick={closeDropdown}
/>
)}
wrapperStyles={{whiteSpace: 'nowrap', padding: 16, paddingTop: 0}}
wrapperStyles={{whiteSpace: 'nowrap', padding: '0 16 16'}}
/>
);
}}
Expand Down
Loading
Loading