Skip to content

chore: upgrade yarn #10

chore: upgrade yarn

chore: upgrade yarn #10

Workflow file for this run

name: Validate code
on: [push, pull_request]
permissions: { contents: read, packages: read }
jobs:
testAndBuild:
runs-on: ubuntu-24.04
timeout-minutes: 2
strategy:
fail-fast: false
matrix:
node-version:
- "23.x" # Latest current
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: ⏬ Install dependencies
run: yarn install
- name: ✅ Run tests
run: yarn test
- name: 🏗 Run build
run: yarn build