Skip to content

Bump marked from 15.0.8 to 15.0.11 #5

Bump marked from 15.0.8 to 15.0.11

Bump marked from 15.0.8 to 15.0.11 #5

name: Automated Tests
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
permissions:
contents: read
jobs:
code-style-check:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: npm
- name: Install dependencies
run: npm ci
- name: Check spelling
run: node --run test:spelling
- name: Check linting
run: node --run lint
- run: echo "🍏 This job's status is ${{ job.status }}."