Skip to content

Bump express from 4.17.1 to 4.19.2 in /ui #221

Bump express from 4.17.1 to 4.19.2 in /ui

Bump express from 4.17.1 to 4.19.2 in /ui #221

Workflow file for this run

name: test
on:
pull_request:
jobs:
selenoid-ui:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set Golang
uses: actions/setup-go@v4
with:
go-version: ~1.21.5
- uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- uses: actions/setup-node@v3
with:
node-version: 12.x
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v3
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Test
run: ci/test.sh
- uses: codecov/codecov-action@v3
with:
flags: go
- uses: codecov/codecov-action@v3
with:
file: ./ui/coverage/coverage-final.json
flags: ui