Skip to content

Bump node-forge from 1.3.1 to 1.3.2 in /cyclops-ui #963

Bump node-forge from 1.3.1 to 1.3.2 in /cyclops-ui

Bump node-forge from 1.3.1 to 1.3.2 in /cyclops-ui #963

Workflow file for this run

name: ui tests
on:
pull_request:
paths:
- "cyclops-ui/**"
push:
paths:
- "cyclops-ui/**"
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
- name: Install dependencies
env:
NODE_OPTIONS: "--dns-result-order=ipv4first"
run: |
cd ${{ github.workspace }}/cyclops-ui
yarn install --network-timeout 60000
- name: Run tests
run: |
cd ${{ github.workspace }}/cyclops-ui
yarn test
- name: Build
run: |
cd ${{ github.workspace }}/cyclops-ui
yarn build