mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-20 14:37:43 +01:00
updated github actions
This commit is contained in:
parent
9986011d3c
commit
6b8fabf257
2 changed files with 37 additions and 1 deletions
2
.github/workflows/build-deploy.yml
vendored
2
.github/workflows/build-deploy.yml
vendored
|
@ -20,7 +20,7 @@ jobs:
|
|||
- name: Install Node.js
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: 14
|
||||
node-version: 16
|
||||
|
||||
- name: Install Yarn packages
|
||||
run: yarn install
|
||||
|
|
36
.github/workflows/linting.yml
vendored
Normal file
36
.github/workflows/linting.yml
vendored
Normal file
|
@ -0,0 +1,36 @@
|
|||
name: Linting
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- next
|
||||
pull_request:
|
||||
types: [opened, reopened]
|
||||
|
||||
permissions: read-all
|
||||
|
||||
jobs:
|
||||
linting:
|
||||
name: Run linters
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Check out Git repository
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: 16
|
||||
|
||||
- name: Install Node.js dependencies
|
||||
run: npm ci
|
||||
|
||||
- name: Run linters
|
||||
uses: wearerequired/lint-action@v2
|
||||
with:
|
||||
eslint: true
|
||||
eslint_dir: src
|
||||
eslint_extensions: tsx,ts
|
||||
eslint_auto_fix: false
|
Loading…
Reference in a new issue