Skip to content

fix(dependencies): Update dependencies #145

fix(dependencies): Update dependencies

fix(dependencies): Update dependencies #145

Workflow file for this run

name: CI
on:
push:
branches:
- master
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: latest
cache: yarn
- run: yarn
- run: git config --global user.name 'John Doe'
- run: git config --global user.email '[email protected]'
- run: yarn test
env:
GITHUB_TOKEN: ${{ secrets.PRIVILEGED_GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- if: github.ref == 'refs/heads/master'
run: yarn release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}