Skip to content

Abilities.Add: Can select a dummy account, repo, issue, and child is… #10

Abilities.Add: Can select a dummy account, repo, issue, and child is…

Abilities.Add: Can select a dummy account, repo, issue, and child is… #10

Workflow file for this run

name: Test
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: "12"
# Speed up subsequent runs with caching
- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
# Install packages.
- name: Install
run: npm install
# Build project.
- name: Build
run: npm run build
# Run tests.
- name: Test
run: npm run test