Skip to content

ci: version package-lock as well #13

ci: version package-lock as well

ci: version package-lock as well #13

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
env:
CI: true
jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version-file: ".node-version"
cache: "npm"
- name: Install Dependencies
run: npm ci
- name: Lint Project
run: npm run lint
- name: Run Tests
run: npm run test:cov
- name: Build Package
run: npm run build