You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
287 B
16 lines
287 B
name: Lint
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
standard:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Standard
|
|
uses: goto-bus-stop/standard-action@v1
|
|
with:
|
|
annotate: true
|
|
env:
|
|
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|