Skip to content

Commit

Permalink
Incremental npm package updates (#665)
Browse files Browse the repository at this point in the history
* Add helper script for backend

* Update ember-cli-babel to latest 7 release

* Fix frontend CI workflow

- Uses only version 14 for testing main flow
- Updates checkout and setup-node
- Removes cache for node-next versions

* Update ember-radio-button to latest supporting Ember 2.18

* Update ember-in-view-port
  • Loading branch information
Tonkpils authored Sep 24, 2023
1 parent b01d915 commit d94f17f
Show file tree
Hide file tree
Showing 4 changed files with 5,585 additions and 2,172 deletions.
18 changes: 3 additions & 15 deletions .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ jobs:
frontend: ${{ steps.filter.outputs.frontend }}
steps:
- uses: actions/checkout@v4

- uses: dorny/paths-filter@v2
id: filter
with:
Expand All @@ -30,10 +29,8 @@ jobs:
- 'frontend/**'
- '.github/workflows/**'
npm-test:
strategy:
matrix:
node_version: ['12.22.6', '14.21']
test-app:
name: Test app
needs: changes
if: ${{ needs.changes.outputs.frontend == 'true' }}
runs-on: ubuntu-latest
Expand All @@ -42,7 +39,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
node-version: 14
cache: npm
cache-dependency-path: frontend/package-lock.json
- run: npm install -g npm@7.0.0
Expand All @@ -64,17 +61,8 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
cache: npm
cache-dependency-path: frontend/package-lock.json
- run: npm install -g npm@7.0.0
- run: npm install
working-directory: ./frontend
- run: npm run test
working-directory: ./frontend

test-app:
name: Test app
needs: [ npm-test ]
runs-on: ubuntu-latest
steps:
- run: echo "done"
Loading

0 comments on commit d94f17f

Please sign in to comment.