Add TKSS Software Inc logo to README #5780
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: | |
| #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: "kVPcGJfehOArEQnHb8BT3KS72xbUQCoxI" | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| steps: | |
| - uses: actions/checkout@master | |
| - uses: actions/setup-node@master | |
| with: | |
| node-version: "16.20.2" | |
| architecture: 'x64' # fix for macos-latest | |
| - run: npm ci | |
| - run: npm run build | |
| - run: npm run lint | |
| - run: npm run test | |
| - run: npm run publish-coverage | |
| # this is stalling out for some reason, so disable it for now | |
| #- run: npm run test-related-projects |