Feat/better cleanup #1548
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: | |
branches: | |
- master | |
- "release-*" | |
pull_request: | |
branches: | |
- master | |
- "release-*" | |
workflow_dispatch: | |
jobs: | |
ci: | |
runs-on: ${{ matrix.os }} | |
env: | |
#hardcode the coveralls token...it's not overly important to protect, and github actions won't allow forks to work with coveralls otherwise | |
COVERALLS_REPO_TOKEN: "RuXDcEBMUavqJgSdr5svlXWGDjrDEWFUI" | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: "lts/*" | |
cache: "npm" | |
- run: npm ci | |
- run: npm run ropm | |
- run: npm run build | |
- run: npm run lint | |
# - run: npm run publish-coverage |