Activate about button (#308) #1347
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: CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-node@v3 | |
- name: Checkout sources | |
uses: actions/checkout@v2 | |
with: | |
persist-credentials: false | |
- name: FixForNodeWarnings | |
run: | | |
echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p | |
- name: Build | |
run: | | |
npm install | |
npm run test | |
npx eslint --max-warnings=0 "**/*.js" | |
npm run build | |
- name: Broadcast update event | |
if: github.ref == 'refs/heads/main' | |
uses: gridsuite/broadcast-event@main | |
with: | |
token: ${{ secrets.REPO_ACCESS_TOKEN }} | |
event-type: commons-ui-updated |