Skip to content

chore: removed old validate script #16

chore: removed old validate script

chore: removed old validate script #16

Workflow file for this run

name: Node.js CI
on: [push]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
name: Continuous Integration
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: "pnpm"
- name: Installing dependencies
run: pnpm install
- name: Linting
run: pnpm lint
- name: Building
run: pnpm build
- name: Testing
run: pnpm coverage