Skip to content

fix(deps): bump actions/checkout from 3.5.3 to 4.1.0 #2415

fix(deps): bump actions/checkout from 3.5.3 to 4.1.0

fix(deps): bump actions/checkout from 3.5.3 to 4.1.0 #2415

Workflow file for this run

name: Web client CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.3.1]
steps:
- uses: actions/[email protected]
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version }}
- name: Install & lint
run: |
cd web/client
yarn install --immutable
yarn lint
- name: Build
run: |
cd web/client
yarn build
- name: Test
run: |
cd web/client
yarn test:unit
# - name: Upload coverage to Codecov
# uses: codecov/[email protected]
# with:
# token: ${{secrets.CODECOV_TOKEN}}
# file: ./client/coverage/coverage-final.json
# flags: unittests
# name: codecov-umbrella