the workflows running unconditionally for each push and each PR are run twice when pushing to a branch that is to be merged by a PR and if that branch is a branch local to the repo (rather than in a fork).
32 lines
714 B
YAML
32 lines
714 B
YAML
name: Yarn Linting
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
# prevent push event from triggering if it's part of a PR
|
|
if: github.event_name != 'push' || github.event.pull_request == null
|
|
|
|
defaults:
|
|
run:
|
|
working-directory: webapp
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Enable Corepack
|
|
run: corepack enable
|
|
- name: Setup Node.js and yarn
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: "22"
|
|
cache: "yarn"
|
|
cache-dependency-path: "webapp/yarn.lock"
|
|
|
|
- name: Install WebApp dependencies
|
|
run: yarn install --frozen-lockfile
|
|
|
|
- name: Linting
|
|
run: yarn lint
|