Add marker icons and mode line colors #13
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
# Temporary workflow for this branch -- we may want to build the client in the main | |
# workflow (cibuild.yml). | |
name: OTP Client CI build | |
on: | |
push: | |
branches: | |
- debug-client-next | |
#paths: | |
# - client-next/** | |
pull_request: | |
branches: | |
- debug-client-next | |
jobs: | |
build-linux: | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Build and test | |
working-directory: ./client-next | |
run: | | |
npm install | |
npm run build |