Skip to content

Update Go 3rd party libraries (#731) #3

Update Go 3rd party libraries (#731)

Update Go 3rd party libraries (#731) #3

Workflow file for this run

# This file is Free Software under the Apache-2.0 License
# without warranty, see README.md and LICENSES/Apache-2.0.txt for details.
#
# SPDX-License-Identifier: Apache-2.0
#
# SPDX-FileCopyrightText: 2023 German Federal Office for Information Security (BSI) <https://www.bsi.bund.de>
# Software-Engineering: 2023 Intevation GmbH <https://intevation.de>
name: Unittest
on:
push:
paths:
- "client/**"
pull_request:
paths:
- "client/**"
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./client
steps:
- uses: actions/checkout@v4
- name: "Install Node"
uses: actions/setup-node@v3
with:
node-version: "20.x"
- name: "Install Deps"
run: npm install
- name: "NPM lint"
run: npm run lint
- name: "NPM check"
run: npm run check
- name: "Unit test"
run: npm run test:unit