Skip to content

I18n: Add translation support #225

I18n: Add translation support

I18n: Add translation support #225

Workflow file for this run

name: Build & Test & Check Format
on:
# Trigger the workflow every time a push is made to 'master'
push:
branches: [master]
pull_request:
branches: [master]
# Allows you to run this workflow manually from the Actions tab on GitHub.
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout your repository using git
uses: actions/checkout@v4
- name: Install & Build
uses: withastro/action@v2
- name: Test
run: bun test
- name: Format Check
run: bun format:check