rejects clients joining full dkg sessions #8
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Node.js CI | |
on: | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: 'yarn' | |
- name: Install packages | |
run: yarn --non-interactive --ignore-scripts | |
# Necessary since `--frozen-lockfile` does not work properly in yarn 1.x. | |
# https://github.com/yarnpkg/yarn/issues/5840 | |
- name: Check for lockfile changes | |
run: | | |
if [[ $(git status | grep yarn.lock) ]]; then | |
echo "yarn.lock has outstanding updates, please check them in." | |
exit 1 | |
fi | |
- name: Lint | |
run: yarn lint |