mirror of
https://github.com/bitwarden/android.git
synced 2024-12-24 18:08:26 +03:00
Created initial workflow for workflow linting (#1783)
This commit is contained in:
parent
46128bcfe6
commit
dbaa32b02c
1 changed files with 21 additions and 0 deletions
21
.github/workflows/workflow-linter.yml
vendored
Normal file
21
.github/workflows/workflow-linter.yml
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
---
|
||||
name: Workflow Linter
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
paths:
|
||||
- .github/workflows/**
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
name: "Workflow Linter"
|
||||
runs-on: ubuntu-20.04
|
||||
steps:
|
||||
|
||||
- name: Checkout Version Branch
|
||||
uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579
|
||||
|
||||
- name: Workflow Lint
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
uses: bitwarden/gh-actions/lint-workflow@6f6ac44e93df2aaacfb46018dbeffffaad4a18e8
|
Loading…
Reference in a new issue