Skip to content

chore(deps): bump elliptic from 6.5.4 to 6.6.0 #1029

chore(deps): bump elliptic from 6.5.4 to 6.6.0

chore(deps): bump elliptic from 6.5.4 to 6.6.0 #1029

Workflow file for this run

name: Lint and Test
on: [push]
jobs:
install:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Cache Dependencies
uses: actions/cache@v1
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install Dependencies
run: yarn install
lint:
needs: install
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Cache Dependencies
uses: actions/cache@v1
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-
- name: Run ESLint
run: yarn lint:js -f tap
test:
needs: install
runs-on: ubuntu-latest
strategy:
matrix:
ember-try-scenario:
[
ember-default,
ember-lts-3.20,
ember-lts-3.24,
ember-release,
ember-beta,
ember-canary,
]
steps:
- uses: actions/checkout@v1
- name: Cache Dependencies
uses: actions/cache@v1
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-
- name: Run Tests
run: yarn ember try:one ${{ matrix.ember-try-scenario }}
continue-on-error: ${{ matrix.ember-try-scenario == 'ember-canary' }}
env:
CI: true