Update FAQ adding max discount per month of 80EUR.mdx #469
Workflow file for this run
This file contains hidden or 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 | |
on: [pull_request, push] | |
concurrency: | |
cancel-in-progress: true | |
group: lint-${{ github.ref }} | |
jobs: | |
code: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: .nvmrc | |
cache: "yarn" | |
- name: Install dependencies | |
run: | | |
yarn --frozen-lockfile | |
- name: Lint | |
run: | | |
yarn lint | |
docker: | |
name: Lint Dockerfile | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Lint Dockerfile | |
uses: hadolint/hadolint-action@v2.1.0 | |
with: | |
recursive: true |