Skip to content

build(deps): bump axios from 0.25.0 to 0.28.0 in /personal-calls/frontend #103

build(deps): bump axios from 0.25.0 to 0.28.0 in /personal-calls/frontend

build(deps): bump axios from 0.25.0 to 0.28.0 in /personal-calls/frontend #103

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
name: apps/super-app CI (pull request against master)
on:
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: apps/super-app/package-lock.json
- name: Install
run: npm ci
working-directory: apps/super-app/
- name: Lint
run: npm run lint
working-directory: apps/super-app/
- name: Check formatting
run: npm run format:check
working-directory: apps/super-app/
- name: Build
run: npm run build
working-directory: apps/super-app/
- name: Test
run: npm test
working-directory: apps/super-app/