Skip to content

Update docs

Update docs #113

Workflow file for this run

name: Test
on:
workflow_dispatch:
pull_request:
paths:
- "src/**"
- "tests/**"
branches: [main, master]
push:
paths:
- "src/**"
- "tests/**"
branches: [main, master]
jobs:
tests:
if: github.repository == 'raycast/utils'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: raycast/github-actions/[email protected]
- name: Setup node
uses: raycast/github-actions/[email protected]
- name: Npm Install
run: npm ci
- name: Npm Lint
run: npm run test
- name: Build
run: npm run build
- name: Npm Install Tests
run: npm ci
working-directory: ./tests
- name: Build tests
run: npm run build
working-directory: ./tests