Skip to content

Merge branch 'master' of https://github.com/thednp/bootstrap.native #109

Merge branch 'master' of https://github.com/thednp/bootstrap.native

Merge branch 'master' of https://github.com/thednp/bootstrap.native #109

Workflow file for this run

name: ci
on: push
jobs:
test:
runs-on: ubuntu-20.04
name: Test on Node 16
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: pnpm/action-setup@v2.2.2
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16
cache: pnpm
# - uses: bahmutov/npm-install@v1
- 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 }}