Switched all MIT licenses by us to Apache-2.0, added Apache-2.0 Licen… #435
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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: Integrationtest | |
on: | |
push: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
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: "Install playwright" | |
run: npx playwright install | |
- name: "Integration test" | |
run: npm run test:integration |