Skip to content

build(deps): bump ws from 6.2.2 to 6.2.3 in /tools/schema-builder #1771

build(deps): bump ws from 6.2.2 to 6.2.3 in /tools/schema-builder

build(deps): bump ws from 6.2.2 to 6.2.3 in /tools/schema-builder #1771

Workflow file for this run

name: 🚀 Build CI
env:
NODE_OPTIONS: --max-old-space-size=6144
on:
push:
branches: [master, dev]
pull_request:
branches: [master, dev]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '14', '16' ]
name: build steps
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: Cache Node Dependencies
uses: actions/cache@v3
with:
path: node_modules
key: ${{runner.OS}}-${{ hashFiles('**/yarn.lock') }}
- name: Install
run: yarn install
if: steps.cache.outputs.cache-hit != 'true'
- name: Build
run: yarn build
- name: Test
run: yarn test