FreeTube/.github/workflows/linter.yml

28 lines
795 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
runs-on: ubuntu-latest
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@v4
2022-11-07 07:01:34 +01:00
- name: Use Node.js 18.x
uses: actions/setup-node@v4
2020-06-19 22:29:10 +02:00
with:
2022-11-07 07:01:34 +01:00
node-version: 18.x
cache: "yarn"
- run: yarn run ci
- run: yarn run lint