Add: Post about mr42 #513
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: Test CI | |
on: [push, pull_request] | |
jobs: | |
web: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 20 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: "1.22" | |
- run: npm install -g pnpm | |
- name: Install dependencies | |
run: pnpm install --no-frozen-lockfile | |
- name: Lint check the project | |
run: pnpm lint | |
- name: Test for the prettier format | |
run: pnpm fmt | |
- name: Build the project and type check | |
run: pnpm build |