Skip to content

Merge pull request #100 from PeculiarVentures/dependabot/npm_and_yarn… #62

Merge pull request #100 from PeculiarVentures/dependabot/npm_and_yarn…

Merge pull request #100 from PeculiarVentures/dependabot/npm_and_yarn… #62

Workflow file for this run

name: CI
on:
push:
branches:
- '**'
tags:
- 'v*.*.*'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '22.x'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run linter
run: npm run lint
- name: Build packages
run: npm run build
- name: Run tests with coverage
run: npm run coverage
- name: Upload coverage
uses: coverallsapp/github-action@v2