Skip to content

chore: audit npm packages #13

chore: audit npm packages

chore: audit npm packages #13

Workflow file for this run

name: MESSAGING_APP CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
env:
CI: true
strategy:
matrix:
node-version: [20.x]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js version ${{ matrix.node-version}}
uses: actions/setup-node@v2
with:
node-version: ${{matrix.node-version}}
- run: npm install
- run: npm build --prefix client
- run: npm test