Skip to content

build(deps): bump actions/checkout from 5 to 6 in the action group #154

build(deps): bump actions/checkout from 5 to 6 in the action group

build(deps): bump actions/checkout from 5 to 6 in the action group #154

Workflow file for this run

name: CI
on:
push:
branches:
- "**"
tags:
- "!**" # Don't run twice on commits with tags
pull_request:
workflow_dispatch:
env:
FORCE_COLOR: 1
jobs:
release:
name: Lint and test
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
fetch-tags: true
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Audit
run: npm audit --omit dev
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Tests
run: npm run test
- name: Generate test coverage
run: npm run test-coverage
- name: Upload test coverage
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}