Skip to content

feature/letter-matcher-game feature: add letterMatcher game (Maestro … #2

feature/letter-matcher-game feature: add letterMatcher game (Maestro …

feature/letter-matcher-game feature: add letterMatcher game (Maestro … #2

Workflow file for this run

name: Feature branch CI
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
if: github.actor != 'dependabot[bot]'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '22.22'
- name: Install dependencies
run: yarn install
- name: Tests
run: yarn test
build:
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
needs: test
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '22.22'
- name: Install dependencies
run: yarn install
- name: Build
run: yarn build