fix: baking in version #30
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 xkcd 2347 | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
- develop | |
permissions: | |
contents: read | |
jobs: | |
build: | |
name: Build web UI | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # pin@v3 | |
- name: test build | |
run: | | |
rm -f .yarnrc.yml | |
corepack enable | |
yarn set version berry | |
yarn config set nodeLinker node-modules | |
yarn workspaces focus --production | |
yarn eslint --init | |
yarn build | |
working-directory: web/lxkns |