Skip to content

Modernize library build tools and bump dependencies (#747) #358

Modernize library build tools and bump dependencies (#747)

Modernize library build tools and bump dependencies (#747) #358

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Begin CI...
uses: actions/checkout@v6
- name: Use Node 24
uses: actions/setup-node@v6
with:
node-version: 24.x
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
env:
CI: true
- name: Lint
run: yarn lint
env:
CI: true
- name: Test
run: yarn test --ci --coverage --maxWorkers=2
env:
CI: true
- name: Coverage
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Build
run: yarn build
env:
CI: true