Skip to content

Bump satori from 0.11.1 to 0.12.2 #333

Bump satori from 0.11.1 to 0.12.2

Bump satori from 0.11.1 to 0.12.2 #333

Workflow file for this run

name: CI
on:
pull_request:
types:
- opened
- edited
- synchronize
- reopened
workflow_call:
jobs:
build:
name: Code standards & build
runs-on: ubuntu-latest
timeout-minutes: 3
strategy:
matrix:
node-version: [18.x]
steps:
- name: "☁️ Checkout repository"
uses: actions/checkout@v4
- name: "πŸ”§ Setup Node.js ${{ matrix.node-version }}"
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: "πŸ“¦ Install dependencies"
run: npm ci
- name: "πŸ”Ž Lint code"
run: npm run lint
- name: "πŸ“ Checking code format"
run: npm run format:check
- name: "πŸš€ Build the project"
run: npm run build