Skip to content

chore(deps-dev): bump @babel/core from 7.23.7 to 7.23.9 in /ember #824

chore(deps-dev): bump @babel/core from 7.23.7 to 7.23.9 in /ember

chore(deps-dev): bump @babel/core from 7.23.7 to 7.23.9 in /ember #824

Workflow file for this run

---
name: Frontend
on:
push:
branches:
- main
pull_request:
branches:
- main
defaults:
run:
working-directory: ./ember
jobs:
lint:
name: "Lint"
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Install Node
uses: actions/setup-node@v4
with:
node-version: 18
cache: yarn
cache-dependency-path: ember/yarn.lock
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
test:
name: "Test"
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Install Node
uses: actions/setup-node@v4
with:
node-version: 18
cache: yarn
cache-dependency-path: ember/yarn.lock
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Run Tests
run: yarn ember test