This repository has been archived by the owner on Dec 16, 2023. It is now read-only.
Use parcel #87
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: Code analysis checks | |
on: [push] | |
jobs: | |
codeanalysis: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x] | |
steps: | |
- name: Main checkout | |
uses: actions/checkout@v3 | |
# node setup | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'yarn' | |
# node install | |
- name: Install dependencies | |
run: yarn | |
# ESlint | |
- name: ESlint | |
run: yarn eslint | |
# Prettier | |
- name: Prettier | |
run: yarn prettier | |
# Stylelint | |
- name: Stylelint | |
run: yarn stylelint |