Skip to content

chore(deps-dev): bump typescript from 5.1.3 to 5.6.3 in /frontend #1608

chore(deps-dev): bump typescript from 5.1.3 to 5.6.3 in /frontend

chore(deps-dev): bump typescript from 5.1.3 to 5.6.3 in /frontend #1608

Workflow file for this run

---
name: Tests
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.19]
steps:
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Get dependencies
run: |
go get -v -t -d ./...
working-directory: backend
- name: Test
run: go test -v ./...
working-directory: backend