Skip to content

updated github actions to v4 #273

updated github actions to v4

updated github actions to v4 #273

Workflow file for this run

name: Typescript
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'npm'
cache-dependency-path: desktopexporter/package-lock.json
- name: Build
run: cd desktopexporter && npm install
- name: Test
run: make validate-typescript