Skip to content

Bump eslint from 8.42.0 to 8.47.0 #350

Bump eslint from 8.42.0 to 8.47.0

Bump eslint from 8.42.0 to 8.47.0 #350

Workflow file for this run

name: CI
on:
push:
branches: [main]
tags: ["v*"]
pull_request:
branches: ["*"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16.x
registry-url: https://registry.npmjs.org
cache: yarn
- run: yarn install --frozen-lockfile
- run: yarn run build
- run: yarn run lint:ci
- 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 }}
chromatic:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # Required for Chromatic
- uses: actions/setup-node@v2
with:
node-version: 16.x
registry-url: https://registry.npmjs.org
cache: yarn
- run: yarn install --frozen-lockfile
# Chromatic only runs on pushes or pulls to our source repo
- name: Publish to Chromatic
uses: chromaui/action@v1
if: ${{ github.event.repository.full_name == 'foxglove/three-text' }}
with:
projectToken: de34ab810be0
autoAcceptChanges: main
exitOnceUploaded: true