feat: add digital signature application #47
Workflow file for this run
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: Meteor.js CI | |
on: | |
pull_request: | |
branches: [dev] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
meteor: [ '2.13.3' ] | |
name: Meteor ${{ matrix.meteor }} tests | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup meteor | |
uses: meteorengineer/setup-meteor@v1 | |
with: | |
meteor-release: ${{ matrix.meteor }} | |
- run: meteor npm install | |
- run: meteor npm test |