Skip to content

Merge branch 'main' of github.com:Swetrix/marketplace-fe into main #355

Merge branch 'main' of github.com:Swetrix/marketplace-fe into main

Merge branch 'main' of github.com:Swetrix/marketplace-fe into main #355

Workflow file for this run

name: Pull request validation workflow
on:
push:
branches: [main]
pull_request:
branches: [main]
types: [opened, labeled, synchronize, ready_for_review]
jobs:
checks:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.16.x]
steps:
- name: Checkout Repository
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Setup NodeJS ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm install
- name: Lint validation
run: npm run lint
- name: Code formatting validation
run: npm run format