Skip to content

Change RIF Logo

Change RIF Logo #466

Workflow file for this run

name: ci
on:
pull_request
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 10.x
uses: actions/setup-node@v3
with:
node-version: 10.x
- run: npm i
- run: npm run test:ci
- run: npm run lint
- run: npm publish --dry-run
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}