Skip to content

chore(dependencies): Update yarn #138

chore(dependencies): Update yarn

chore(dependencies): Update yarn #138

Workflow file for this run

name: CI
on:
push:
branches:
- master
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: latest
cache: yarn
- run: yarn
- run: git config --global user.name 'John Doe'
- run: git config --global user.email 'jdoe@example.com'
- 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 }}