Files
svgl/.github/workflows/ci.yml
T
pheralb 33dd53e4c7 🛠️ Update workflow.
2023-03-20 11:21:57 +00:00

27 lines
428 B
YAML

name: 🛠️ Check
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
svelte-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install dependencies
run: npm install
- name: Run typecheck
run: npm run check