Skip to content

deps(misc): bump @storybook/addon-links from 6.5.15 to 7.4.6 #495

deps(misc): bump @storybook/addon-links from 6.5.15 to 7.4.6

deps(misc): bump @storybook/addon-links from 6.5.15 to 7.4.6 #495

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@v3
- name: Use Node
uses: actions/setup-node@v3
with:
node-version: 16
- 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@v3
- name: Use Node
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: ember t
run: yarn run test:ember