Merge branch 'master' of https://github.com/thednp/bootstrap.native #111
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: ci | |
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
name: Test on Node 20 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
# - uses: pnpm/[email protected] | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: pnpm | |
- run: pnpm install --no-frozen-lockfile | |
- run: pnpm build | |
- run: pnpm test | |
- name: Upload coverage report on Node 16 to coveralls.io... | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |