This repository has been archived by the owner on Sep 26, 2024. It is now read-only.
rebase strapi to master (#5626) #3307
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
permissions: | |
actions: write | |
checks: write | |
contents: write | |
deployments: write | |
pull-requests: write | |
statuses: write | |
on: | |
push: | |
branches-ignore: | |
- staging.* | |
- beta.* | |
- production.* | |
tags-ignore: | |
- '*.*' | |
paths-ignore: | |
- '**.md' | |
env: | |
GATSBY_CPU_COUNT: 2 | |
GATSBY_ENV: staging | |
jobs: | |
lint: | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/[email protected] | |
- name: Set up Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 18 | |
- name: Cache dependencies | |
id: cache | |
uses: actions/cache@v2 | |
env: | |
cache-name: cache-node-modules | |
with: | |
path: ./node_modules | |
key: modules-${{ hashFiles('package-lock.json') }} | |
- name: Install Node.js dependencies | |
run: | | |
npm ci | |
npm test | |
- name: Run linters | |
uses: wearerequired/lint-action@v1 | |
with: | |
eslint: true |