build(deps): bump ws, engine.io-client, engine.io, socket.io-adapter and puppeteer #2188
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 CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- "**" | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Nodejs | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Export CHROME_BIN Env Variable | |
run: export CHROME_BIN=chromium-browser | |
- name: Export Display Variable | |
run: export DISPLAY=:99.0 | |
- name: Install Ruby | |
uses: ruby/setup-ruby@3783f195e29b74ae398d7caca108814bbafde90e | |
with: | |
ruby-version: 2.7.3 | |
- name: Install Dependencies | |
run: npm install | |
- name: Bundle Install | |
run: bundle install | |
- name: Install Firefox | |
run: | | |
sudo apt-get update | |
sudo apt-get install --no-install-recommends -y firefox xvfb | |
- name: Run Gulp | |
uses: GabrielBB/xvfb-action@v1 | |
with: | |
run: gulp default --ci |