chore(deps): update all non-major dependencies #194
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
# SPDX-FileCopyrightText: Copyright (c) 2022-2024 trobonox <[email protected]> | |
# | |
# SPDX-License-Identifier: Apache-2.0 | |
name: "Test frontend on pull requests" | |
on: | |
pull_request: | |
types: [ opened, reopened ] | |
branches: | |
- main | |
paths: | |
- 'package.json' | |
- 'yarn.lock' | |
jobs: | |
test-frontend: | |
strategy: | |
fail-fast: false | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: install app dependencies and build it | |
run: yarn && yarn generate |