chore: remove babel #934
Workflow file for this run
This file contains 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
name: Static Tests | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
static-tests: | |
name: Static Tests | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: npm ci | |
- name: Build | |
run: npm run build | |
- name: Unit test | |
run: npm test | |
- name: Run Biome | |
run: npm run biome:ci | |
- name: Commit lint | |
uses: wagoid/commitlint-github-action@v6 |