Skip to content

Deploy by TimeBones #24

Deploy by TimeBones

Deploy by TimeBones #24

Workflow file for this run

name: Yarn Lint Test
run-name: Deploy by ${{ github.actor }}
on:
workflow_dispatch:
merge_group:
pull_request:
branches:
- develop
- main
- rc
paths-ignore:
- '**.md'
jobs:
yarn:
name: Yarn Build
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
statuses: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- name: Install dependencies
run: yarn install --immutable --no-progress
- run: yarn lint-ci
- run: yarn test-ci