Skip to content

update to node 20 lts #254

update to node 20 lts

update to node 20 lts #254

Workflow file for this run

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