2020-06-19 20:29:10 +00:00
|
|
|
# This is a basic workflow to help you get started with Actions
|
|
|
|
|
2020-06-19 20:29:45 +00:00
|
|
|
name: Linter
|
2020-06-19 20:29:10 +00: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 01:59:31 +00:00
|
|
|
branches: [ master, development ]
|
2020-06-19 20:29:10 +00: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 20:29:45 +00:00
|
|
|
lint:
|
2020-06-19 20:29:10 +00:00
|
|
|
# The type of runner that the job will run on
|
2021-08-16 19:49:40 +00:00
|
|
|
runs-on: ubuntu-20.04
|
2020-06-19 20:29:10 +00:00
|
|
|
|
|
|
|
# Steps represent a sequence of tasks that will be executed as part of the job
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2022-05-10 17:35:58 +00:00
|
|
|
- name: Use Node.js 16.x
|
2021-09-19 07:25:47 +00:00
|
|
|
uses: actions/setup-node@v2
|
2020-06-19 20:29:10 +00:00
|
|
|
with:
|
2022-05-10 17:35:58 +00:00
|
|
|
node-version: 16.x
|
2021-09-19 07:25:47 +00:00
|
|
|
cache: "yarn"
|
|
|
|
- run: npm run ci
|
2020-06-19 20:29:10 +00:00
|
|
|
- run: npm run lint
|