Skip to content

Add CODEOWNERS file (#20) #48

Add CODEOWNERS file (#20)

Add CODEOWNERS file (#20) #48

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request: {}
concurrency:
group: ci-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
test:
name: 'Tests'
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1
id: node-modules-cache
with:
path: '**/node_modules'
key: node-modules-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
node-modules-
- uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 # v3.7.0
if: steps.node-modules-cache.outputs.cache-hit != 'true'
with:
node-version: '16.x'
- run: yarn install
- name: Run tests
run: yarn test:ember
#
# try-scenarios:
# name: ${{ matrix.try-scenario }}
# runs-on: ubuntu-latest
# needs: 'test'
# timeout-minutes: 10
#
# strategy:
# fail-fast: false
# matrix:
# try-scenario:
# - ember-lts-3.28
# - ember-lts-4.4
# - ember-release
# - ember-beta
# - ember-canary
# - ember-classic
# - embroider-safe
# - embroider-optimized
#
# steps:
# - uses: actions/checkout@v3
# - name: Install Node
# uses: actions/setup-node@v3
# with:
# node-version: 14.x
# cache: npm
# - name: Install Dependencies
# run: npm ci
# - name: Run Tests
# run: ./node_modules/.bin/ember try:one ${{ matrix.try-scenario }}