Replace foxglove refs to Lichtblick #3
Workflow file for this run
This file contains hidden or 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: CI | |
on: | |
push: | |
branches: [main] | |
tags: v* | |
pull_request: | |
branches: "*" | |
jobs: | |
all: | |
name: all | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 14 | |
registry-url: https://registry.npmjs.org | |
cache: yarn | |
- run: yarn install --frozen-lockfile | |
- run: yarn run build | |
- run: yarn run lint | |
# jhurliman: disable testing in CI for now, it needs special handling with xvfb | |
# - run: yarn run test | |
- name: Publish to NPM | |
if: ${{ startsWith(github.ref, 'refs/tags/v') }} | |
run: yarn publish --access public | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }} |