Skip to content

Release 1.0.1

Release 1.0.1 #101

Workflow file for this run

name: CI

Check failure on line 1 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

(Line: 33, Col: 1): 'name' is already defined, (Line: 35, Col: 1): 'on' is already defined, (Line: 42, Col: 1): 'jobs' is already defined
on:
push:
branches: ["**"]
pull_request:
branches: ["**"]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'pnpm'
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: '10'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run lint
run: pnpm run lint
name: CI
on:
push:
branches:
- main
- master
pull_request: {}
jobs:
test:
name: "Tests"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: volta-cli/action@v4
- run: volta install node pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm run lint
- run: pnpm run test:ember
floating:
name: "Floating Dependencies"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: volta-cli/action@v4
- run: volta install node pnpm
- run: pnpm install --no-lockfile
- run: pnpm run test:ember
try-scenarios:
name: ${{ matrix.try-scenario }}
runs-on: ubuntu-latest
needs: "test"
strategy:
fail-fast: false
matrix:
try-scenario:
- ember-lts-4.12
- ember-lts-5.12
- ember-release
- ember-beta
- ember-canary
steps:
- uses: actions/checkout@v2
- uses: volta-cli/action@v4
- run: volta install node pnpm
- run: pnpm install --frozen-lockfile
- run: ./node_modules/.bin/ember try:one ${{ matrix.try-scenario }}