Bump @uiw/react-codemirror from 4.21.2 to 4.21.11 in /web #397
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
go: | |
name: Build (go) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.20' | |
- name: Build | |
working-directory: service | |
run: | | |
go version | |
make build | |
# - name: Test | |
# run: go test | |
javascript: | |
name: Build (javascript) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JavaScript | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
- name: Build | |
working-directory: web | |
run: | | |
node -v | |
yarn version | |
yarn install | |
yarn run build | |
# - name: Test | |
# run: yarn test |