Skip to content

[Javascript] Vehicle Purchase #5

[Javascript] Vehicle Purchase

[Javascript] Vehicle Purchase #5

Workflow file for this run

name: javascript
on:
push:
paths:
- ".github/workflows/javascript.yml"
- "javascript/**"
branches: [main]
pull_request:
paths:
- ".github/workflows/javascript.yml"
- "javascript/**"
branches: [main]
defaults:
run:
working-directory: javascript
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 18.x
- name: Install dependencies
run: yarn
- name: Run tests
run: yarn workspaces run test