feat: allow default language to be changed #44
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: Build | |
on: | |
push: | |
branches: | |
- "main" | |
paths-ignore: | |
- "**.md" | |
tags-ignore: | |
- "*" | |
pull_request: | |
branches: | |
- "main" | |
paths-ignore: | |
- "**.md" | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
Build: | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "📥 Checkout" | |
uses: actions/checkout@v4 | |
- name: "🗃️ Setup Node" | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: "📐 Install dependencies" | |
run: npm ci | |
- name: "🧬 Type Check" | |
run: npm run type:check | |
- name: "🏗️ Build" | |
run: npm run build | |
- name: "🖌️ Lint" | |
run: npm run lint | |
- name: "🧪 Test" | |
run: npm run test |