Skip to content

build(deps-dev): bump sloc from 0.2.1 to 0.3.0 #349

build(deps-dev): bump sloc from 0.2.1 to 0.3.0

build(deps-dev): bump sloc from 0.2.1 to 0.3.0 #349

Workflow file for this run

name: build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
name: Build & test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Install Node 18
- uses: actions/setup-node@v3
with:
node-version: 20
# Install & build & test:
- run: yarn install
- run: yarn npm audit --environment production
- run: yarn run build
# Coverage report
- name: Coveralls GitHub Action
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}