chore(deps): update dependency postcss to v8.4.49 #567
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
- master | |
pull_request: {} | |
env: | |
KEEP_DATA_TEST_SELECTORS: '1' | |
concurrency: | |
group: ci-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Install dependencies | |
uses: bahmutov/npm-install@v1 | |
- name: Lint | |
run: yarn lint | |
- name: Test | |
run: yarn test | |
test-try: | |
name: Additional Tests | |
runs-on: ubuntu-latest | |
needs: | |
- test | |
strategy: | |
matrix: | |
scenario: | |
- ember-lts-3.24 | |
- ember-release | |
- ember-beta | |
- ember-canary | |
- ember-lts-with-jquery | |
- ember-classic | |
- embroider-safe | |
- embroider-optimized | |
fail-fast: false | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Install dependencies | |
uses: bahmutov/npm-install@v1 | |
- name: Test | |
run: yarn ember try:one ${{ matrix.scenario }} | |
working-directory: packages/test-app |