Skip to content

Update actions in workflows #49

Update actions in workflows

Update actions in workflows #49

Workflow file for this run

on:
push:
branches:
- main
workflow_dispatch:
workflow_call:
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
name: Continuous Integration
permissions:
contents: read
defaults:
run:
shell: bash
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: latest
- name: Install dependencies
run: npm install
- name: Formatting
run: npm run format:check
- name: Linting
run: npm run lint
- name: Build
run: npx tsc
- name: Test
run: npm test