Skip to content

chore: small changes #132

chore: small changes

chore: small changes #132

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
branches:
- 'master'
paths:
- 'src/**/*'
- 'test/**/*'
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: |
npm install -g @liriliri/lsla
npm i
npm run ci
- run: |
npm install -g codecov
codecov --disable=gcov
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}