Skip to content

Updating project

Updating project #55

Workflow file for this run

name: Updates
on:
schedule:
:: - cron: "0 12 * * *"

Check failure on line 5 in .github/workflows/updates.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/updates.yml

Invalid workflow file

You have an error in your yaml syntax on line 5
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 12.x
uses: actions/setup-node@v1
with:
node-version: 12.x
- run: npm install
- run: npm install -g npm-check-updates
- name: Check for Updates
run: ncu -u
- name: Install Updates
run: npm install
- run: npm run test:ci
env:
APPLITOOLS_API_KEY: ${{ secrets.APPLITOOLS_API_KEY }}