fix(deps): update dependency @oliversalzburg/js-utils to v0.0.44 #184
Workflow file for this run
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
name: QA | |
on: | |
pull_request: | |
push: | |
workflow_call: | |
jobs: | |
qa: | |
name: Run QA | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4 | |
- name: Select NodeJS version | |
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4 | |
env: | |
# renovate: datasource=docker depName=node versioning=node | |
NODE_VERSION: "20.13.1" | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Enable Corepack | |
run: corepack enable | |
- name: Install dependencies | |
run: yarn install | |
- name: Lint | |
run: yarn lint | |
- name: Build | |
run: yarn build | |
- name: Test | |
run: yarn test |