Remove unnecessary activation events #1819
Workflow file for this run
This file contains hidden or 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: | |
| branches: | |
| - master | |
| pull_request: | |
| jobs: | |
| ci: | |
| runs-on: ${{ matrix.os }} | |
| env: | |
| #just hardcode this. It's not a mission-critical token, and we can always change it | |
| COVERALLS_REPO_TOKEN: "Ysqq6q68DgojDzv3gvl5Yv029HXZYwGxq" | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| steps: | |
| - uses: actions/checkout@master | |
| - uses: actions/setup-node@master | |
| with: | |
| node-version: "18.18.2" | |
| - run: npm ci | |
| - run: npm run build | |
| - run: npm run lint | |
| - run: npm run test | |
| # disable coverage for now (because coveralls is down right now) | |
| #- run: npm run publish-coverage | |
| - run: npm run create-package |