mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-25 19:15:34 +00:00
07991dec83
Pin actions/checkout usage to latest 3.x or 4.x as appropriate. These were previously pointing to `@4` or `@3` which pull in the latest versions at these tags as they are released, with the potential to break our workflows if a breaking change or malicious version for either of these streams are released. Changing this to a pinned version also means that dependabot will keep this in the pinend version format (e.g., referencing a SHA) when it opens a PR to bump the dependency. Updates #cleanup Signed-off-by: Mario Minardi <mario@tailscale.com>
41 lines
1.2 KiB
YAML
41 lines
1.2 KiB
YAML
name: webclient
|
|
on:
|
|
workflow_dispatch:
|
|
# For now, only run on requests, not the main branches.
|
|
pull_request:
|
|
branches:
|
|
- "*"
|
|
paths:
|
|
- "client/web/**"
|
|
- ".github/workflows/webclient.yml"
|
|
- "!**.md"
|
|
# TODO(soniaappasamy): enable for main branch after an initial waiting period.
|
|
#push:
|
|
# branches:
|
|
# - main
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-$${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
webclient:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
|
- name: Install deps
|
|
run: ./tool/yarn --cwd client/web
|
|
- name: Run lint
|
|
run: ./tool/yarn --cwd client/web run --silent lint
|
|
- name: Run test
|
|
run: ./tool/yarn --cwd client/web run --silent test
|
|
- name: Run formatter check
|
|
run: |
|
|
./tool/yarn --cwd client/web run --silent format-check || ( \
|
|
echo "Run this command on your local device to fix the error:" && \
|
|
echo "" && \
|
|
echo " ./tool/yarn --cwd client/web format" && \
|
|
echo "" && exit 1)
|