Skip to content

add CI

add CI #2

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
jobs:
ci:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Checkout

Check failure on line 14 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 14
uses: actions/checkout
- name: Install node
uses: actions/setup-node
- name: Install npm dependencies
run: npm ci
- name: Compile typescript
run: npm run build
- name: Check for diffs
run: git diff --no-ext-diff --exit-code