chore: update to ember 5 and bump the version #92
Workflow file for this run
This file contains hidden or 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: test | |
on: [push] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: ["16"] | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_CI_BOT_URL }} | |
JOBS: 1 | |
NODE_OPTIONS: "--max_old_space_size=4096" | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- uses: actions/checkout@v2 | |
- name: setup node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: setup chrome | |
uses: browser-actions/setup-chrome@latest | |
- uses: actions/cache@v2 | |
with: | |
path: node_modules | |
key: ember-cli-deploy-rest-${{ matrix.node }}-${{ hashFiles('package-lock.json') }} | |
restore-keys: | | |
ember-cli-deploy-rest-${{ matrix.node }} | |
- name: npm install | |
run: npm ci | |
- name: npm lint | |
run: npm run lint:js | |
- name: npm test | |
run: npm run test -- -r=dot |