Bump eslint-config-next from 14.0.2 to 14.0.3 #12
Workflow file for this run
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: Tests | |
on: | |
pull_request: | |
jobs: | |
Linting: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout' | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: 'Node.js setup' | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 21 | |
- name: 'Install dependencies' | |
run: yarn install | |
- name: 'Run Prettier' | |
run: yarn format:check | |
Build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout' | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: 'Node.js setup' | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 21 | |
- name: 'Install dependencies' | |
run: yarn install | |
- name: 'Build' | |
run: | | |
yarn run build | |
Licenses: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout' | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: 'Node.js setup' | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 21 | |
- name: 'Install license-checker' | |
run: npm install -g license-checker | |
- name: 'Check licenses' | |
run: license-checker --production --onlyAllow "MIT;ISC;BSD-2-Clause;BSD-3-Clause;Apache-2.0;(MIT OR WTFPL);Apache*;0BSD" --excludePrivatePackages |