Skip to content

ci: updade makefile #25

ci: updade makefile

ci: updade makefile #25

name: CI/CD Tests - Github Actions
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '18.x'
- run: npm install
- run: npm run build --if-present
- run: npm run test
- run: npm run prettier-check
- run: npm run lint-check