chore(deps): bump nanoid from 3.3.7 to 3.3.8 in /lib/rammerhead #348
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-Production | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20.8.0' | |
- name: Install dependencies | |
run: npm install | |
- name: Build libraries | |
run: npm run build | |
- name: Allow AppArmor sandbox to work on Ubuntu | |
run: echo 0 | sudo tee /proc/sys/kernel/apparmor_restrict_unprivileged_userns | |
# Use this if manually running proxyServiceValidator.js on a local client | |
# run: echo -e "\nexport CHROME_DEVEL_SANDBOX=/opt/google/chrome/chrome-sandbox" >> ~/.bashrc | |
- name: Start server | |
run: npm run workflow-test | |
- name: Test server response | |
run: npm test | |
- name: Stop server after testing | |
run: npm stop |