Skip to content

Update ws/braces package versions #227

Update ws/braces package versions

Update ws/braces package versions #227

Workflow file for this run

name: ci
on: push
jobs:
build-and-upload-artifacts:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ./.github/commands/dependencies/install_yarn_deps
- name: Build
run: yarn build
- uses: actions/upload-artifact@v3
with:
name: build-artifact
path: |
dist/
ts-build/
run-karma:
runs-on: ubuntu-latest
env:
BROWSERSTACK_USERNAME: ${{ secrets.BROWSERSTACK_USERNAME }}
BROWSERSTACK_ACCESS_KEY: ${{ secrets.BROWSERSTACK_ACCESS_KEY }}
timeout-minutes: 8
steps:
- uses: actions/checkout@v2
- uses: ./.github/commands/dependencies/install_yarn_deps
- run: yarn karma start karma.browserstack.js
run-depcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ./.github/commands/dependencies/install_yarn_deps
- run: yarn depcheck
run-pre-commits:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 100 # need the history to do a changed files check below (source, origin)
- uses: actions/setup-python@v2
- uses: ./.github/commands/dependencies/install_yarn_deps
- uses: pre-commit/action@v2.0.2
with:
extra_args: --source ${{ github.event.pull_request.base.sha || 'HEAD~1' }} --origin ${{ github.event.pull_request.head.sha || 'HEAD' }}
build-to-npm:
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
needs:
# TODO: https://github.com/transcend-io/penumbra/issues/209 - fix flakiness
# - run-karma
- run-depcheck
- build-and-upload-artifacts
- run-pre-commits
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: ./.github/commands/dependencies/install_yarn_deps
- name: Download build artifact
uses: actions/download-artifact@v3
with:
name: build-artifact
- name: Configure NPM authentication
run: |
yarn config set npmAlwaysAuth true
yarn config set npmAuthToken ${{ secrets.NPM_TOKEN }}
- name: Publish to yarn/npm
run: yarn npm publish
build-to-github-packages:
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
needs:
# TODO: https://github.com/transcend-io/penumbra/issues/209 - fix flakiness
# - run-karma
- run-depcheck
- build-and-upload-artifacts
- run-pre-commits
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: ./.github/commands/dependencies/install_yarn_deps
- name: Download build artifact
uses: actions/download-artifact@v3
with:
name: build-artifact
- name: Configure Github Packages authentication
run: |
yarn config set npmAlwaysAuth true
yarn config set npmRegistryServer https://npm.pkg.github.com
yarn config set npmPublishRegistry https://npm.pkg.github.com
yarn config set npmAuthToken ${{ secrets.GITHUB_TOKEN }}
- name: Publish to Github packages
run: yarn npm publish