Skip to content

[Feature] improve cache #46

[Feature] improve cache

[Feature] improve cache #46

Workflow file for this run

name: ci
on: ["push", "pull_request"]
jobs:
build:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Installing Nodejs
uses: actions/setup-node@v4
with:
node-version: latest
- name: Install dependencies
run: npm install
- name: Format Code
run: npm run format
- name: Check linting
run: npm run lint
- name: Check commit message
uses: wagoid/commitlint-github-action@v1