Skip to content

fix(deps): bump cookie, socket.io and express #58

fix(deps): bump cookie, socket.io and express

fix(deps): bump cookie, socket.io and express #58

Workflow file for this run

name: Angular CI
on:
pull_request:
branches:
- main
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build:ci
- name: Lint
run: npm run lint
- name: Test
run: npm run test:ci