Skip to content

v0.5.0

v0.5.0 #38

Workflow file for this run

name: CI
on:
pull_request:
types: [opened, synchronize]
jobs:
test:
name: Test
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Setup Node.js 18 environment
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install dependencies
run: npm ic
- name: Run linter
run: npm run lint
- name: Run tests with coverage
run: npm run coverage
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: Build
run: npm run build