Skip to content

Bump engine.io from 6.6.5 to 6.6.9 #668

Bump engine.io from 6.6.5 to 6.6.9

Bump engine.io from 6.6.5 to 6.6.9 #668

Workflow file for this run

name: JS
on: [push, pull_request]
jobs:
build:
name: Test JS
runs-on: ubuntu-22.04
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Read .nvmrc
run: echo "NVMRC=$(cat .nvmrc)" >> $GITHUB_OUTPUT
id: nvm
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: '${{ steps.nvm.outputs.NVMRC }}'
- name: Install packages
run: npm install
- name: Lint JS
run: npm run lint
- name: Build JS with Parcel
run: npm run dev:js