Bump elliptic from 6.5.3 to 6.6.1 (#30) #101
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: Run-Tests | |
# Run this workflow every time a new commit pushed to your repository | |
on: | |
- push | |
- pull_request | |
jobs: | |
# Set the job key. The key is displayed as the job name | |
# when a job name is not provided | |
test: | |
# Name the Job | |
name: Run Ember Tests | |
# Set the type of machine to run on | |
runs-on: ubuntu-latest | |
steps: | |
# Checks out a copy of your repository on the ubuntu-latest machine | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install Node 14 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "14" | |
- name: Node Modules Cache | |
uses: actions/cache@v2 | |
with: | |
path: "**/node_modules" | |
key: ${{ runner.os }}-ci-yarn-${{ hashFiles('**/yarn.lock') }} | |
- name: Install Dependencies | |
run: yarn --frozen-lockfile | |
- name: Run Tests | |
run: yarn run test |