Skip to content

chore(deps): update yarn to v4.15.0 (#566) #1593

chore(deps): update yarn to v4.15.0 (#566)

chore(deps): update yarn to v4.15.0 (#566) #1593

Workflow file for this run

---
name: Release
# yamllint disable-line rule:truthy
on:
workflow_dispatch:
push:
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6.0.2
- uses: actions/setup-node@v6.4.0
with:
node-version-file: '.nvmrc'
cache: yarn
- name: Run install
uses: borales/actions-yarn@v5.0.0
with:
cmd: install --immutable
- name: Format
run: yarn run format --check
- name: Lint
run: yarn run lint
- name: Test
run: yarn run test
- name: Build
run: yarn run build
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: yarn run release