Removed broken dependency #259
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: python -m pip install --upgrade packaging pip setuptools | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
- run: npm install | |
- run: npm test | |
- run: npm run coverage | |
- uses: coverallsapp/github-action@v2 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |