Adding dynamic imports section to readme (#184) #151
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: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
CI: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
meteor-version: ['2.5.6', '2.6.1', '?'] # ? - latest meteor version | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Check dependency duplications | |
uses: vazco/open-standards/actions/npm-dependency-duplications/@master | |
- name: Check dependency vulnerabilities | |
uses: vazco/open-standards/actions/npm-dependency-vulnerabilities/@master | |
- name: Install Meteor | |
env: | |
METEOR_VERSION: ${{ matrix.meteor-version }} | |
run: curl https://install.meteor.com/?release=$METEOR_VERSION | /bin/sh | |
- name: Install dependencies | |
run: meteor npm install | |
- name: Lint | |
run: meteor npm run lint:ts | |
- name: Run tests | |
run: meteor npm run test:CI |