Skip to content

Merge pull request #1 from FriendlyCaptcha/gh-actions #2

Merge pull request #1 from FriendlyCaptcha/gh-actions

Merge pull request #1 from FriendlyCaptcha/gh-actions #2

Workflow file for this run

name: SDK build and test
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:

Check failure on line 12 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 12
- uses: actions/checkout@v3
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20.x
cache: "npm"
cache-dependency-path: "package-lock.json"
- name: "Install deps"
run: npm ci
- name: "Build"
run: npm run build:dist
-name: "Test"
run: npm t