Skip to content

Bump @frames.js/debugger from 0.1.9 to 0.3.2 #335

Bump @frames.js/debugger from 0.1.9 to 0.3.2

Bump @frames.js/debugger from 0.1.9 to 0.3.2 #335

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: Build
run: make build
- name: Test
run: make test