Skip to content

chore(deps): bump golang.org/x/net from 0.12.0 to 0.17.0 in /server #1942

chore(deps): bump golang.org/x/net from 0.12.0 to 0.17.0 in /server

chore(deps): bump golang.org/x/net from 0.12.0 to 0.17.0 in /server #1942

Workflow file for this run

name: UI Build and Test
on:
pull_request:
push:
branches: [master]
jobs:
frontend-build:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 16.x
- name: npm ci, build
working-directory: ./frontend
run: |
yarn install --frozen-lockfile
yarn build --if-present
frontend-test:
needs: frontend-build
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 16.x
- name: yarn ci, build and test
working-directory: ./frontend
run: |
yarn install --frozen-lockfile
yarn test