Browse Source

updated github actions

pull/74/head
Jelle van Snik 3 years ago
parent
commit
6b8fabf257
  1. 2
      .github/workflows/build-deploy.yml
  2. 36
      .github/workflows/linting.yml

2
.github/workflows/build-deploy.yml

@ -20,7 +20,7 @@ jobs: @@ -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

@ -0,0 +1,36 @@ @@ -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…
Cancel
Save