Merge pull request #222 from apivideo/sort-params-in-analytics #563
This file contains hidden or 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: Run tests | |
on: [push] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: ['15'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup node ${{ matrix.node }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node }} | |
- run: npm install --no-save | |
- name: Run tests | |
run: npm run test | |
env: | |
API_KEY: ${{ secrets.API_KEY }} |