Skip to content

chore(deps): bump postcss and next in /apps/web #456

chore(deps): bump postcss and next in /apps/web

chore(deps): bump postcss and next in /apps/web #456

Workflow file for this run

name: "Style"
on:
push:
branches: [main]
pull_request:
types:
- opened
- synchronize
jobs:
lint:
runs-on: ubuntu-latest
name: Lint
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Run linting rules and tests
uses: actions/setup-node@v3
with:
node-version: 16
- run: npm ci
- run: npm run lint
prettier:
runs-on: ubuntu-latest
name: Prettier
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Run linting rules and tests
uses: actions/setup-node@v3
with:
node-version: 16
- run: npm ci
- run: npm run prettier
dict-check:
runs-on: ubuntu-latest
name: Check dictionary
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Run dictionary checker
uses: actions/setup-node@v3
with:
node-version: 16
- run: npm ci
- run: npm run dict-check