Skip to content

deps(misc): bump tailwindcss from 3.3.2 to 3.4.14 #561

deps(misc): bump tailwindcss from 3.3.2 to 3.4.14

deps(misc): bump tailwindcss from 3.3.2 to 3.4.14 #561

Workflow file for this run

name: Build and Tests
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
pull_request:
branches:
- main
jobs:
lint-app:
name: Run linter
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Use Node
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: lint
run: yarn run lint
test-app:
name: Running Tests
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Use Node
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: ember t
run: yarn run test:ember