This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
build(deps): bump ws from 7.5.9 to 7.5.10 #872
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: nodejs-ci | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
# Allows to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
nodejs-ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use matching NodeJS version | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
check-latest: true | |
- name: Install modules and run gulp | |
run: npm ci | |
- name: Test | |
run: npm run test |