Skip to content

Bump prettier from 3.2.5 to 3.3.0 #330

Bump prettier from 3.2.5 to 3.3.0

Bump prettier from 3.2.5 to 3.3.0 #330

Workflow file for this run

name: CI
on:
push:
pull_request:
branches: ['main']
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Cache Node modules
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: make install
- name: Lint
run: make lint
- name: TextLint
run: make lint_text
- name: Check format
run: make format_check
- name: Test
run: make test_coverage
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}