FreeTube/.github/workflows/linter.yml

28 lines
792 B
YAML
Raw Normal View History

2020-06-19 22:29:10 +02:00
# This is a basic workflow to help you get started with Actions
2020-06-19 22:29:45 +02:00
name: Linter
2020-06-19 22:29:10 +02:00
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
pull_request:
2020-10-02 03:59:31 +02:00
branches: [ master, development ]
2020-06-19 22:29:10 +02:00
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
2020-06-19 22:29:45 +02:00
lint:
2020-06-19 22:29:10 +02:00
# The type of runner that the job will run on
2021-08-16 21:49:40 +02:00
runs-on: ubuntu-20.04
2020-06-19 22:29:10 +02:00
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v2
2021-07-16 04:08:40 +02:00
- name: Use Node.js 14.x
uses: actions/setup-node@v2
2020-06-19 22:29:10 +02:00
with:
2021-07-16 04:08:40 +02:00
node-version: 14.x
cache: "yarn"
- run: npm run ci
2020-06-19 22:29:10 +02:00
- run: npm run lint