Skip to content

chore(deps-dev): bump postcss-preset-env from 9.4.0 to 9.5.2 #104

chore(deps-dev): bump postcss-preset-env from 9.4.0 to 9.5.2

chore(deps-dev): bump postcss-preset-env from 9.4.0 to 9.5.2 #104

Workflow file for this run

name: Inspection & Test
on:
pull_request:
branches:
- "master"
- "release/**"
jobs:
build:
runs-on: ubuntu-latest
steps:
# Checkout the code on the runner
- uses: actions/checkout@v3
# Install Node.js
- uses: actions/setup-node@v3
with:
node-version: 20
# Install dependencies
- run: npm ci
# Check Formatting
- run: npm run format:check
# Check linting
- run: npm run lint:check
# Run tests
# - run: npm test