Skip to content

update civet

update civet #43

Workflow file for this run

on: ["push", "pull_request"]
name: Build
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js 20.x
uses: actions/setup-node@v4
with:
cache: yarn
node-version: 20.x
- name: Install and Test
run: |
yarn
yarn build
yarn test
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}