Skip to content

chore: Performance tweaks. #314

chore: Performance tweaks.

chore: Performance tweaks. #314

Workflow file for this run

on: [pull_request, push]
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.21.x, 1.22.x]
node-version: [18.x, 20.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Install Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Checkout code
uses: actions/checkout@v2
- run: npm install
working-directory: ./web
- run: npm run build --if-present
working-directory: ./web
- run: npm test
working-directory: ./web
env:
CI: true
- name: Test go
run: go test -race ./...