Skip to content

build(deps): bump ws from 7.5.9 to 7.5.10 #281

build(deps): bump ws from 7.5.9 to 7.5.10

build(deps): bump ws from 7.5.9 to 7.5.10 #281

Workflow file for this run

name: CI
on:
push:
branches:
- "**"
workflow_dispatch:
jobs:
ci:
runs-on: ubuntu-latest
# Service containers to run with `container-job`
services:
postgres:
# Docker Hub image
image: postgres
env:
POSTGRES_PASSWORD: somethingsecretfortesting
POSTGRES_USER: gram-test
ports:
- 5433:5432
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: "Clean install"
shell: bash
run: npm ci
- name: "Build"
shell: bash
run: npm run build
- name: "Test"
shell: bash
run: npm test
- name: "Lint"
shell: bash
run: npm run lint