Skip to content

Commit

Permalink
ci: check for cycles, update node version. (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
morganney authored Oct 16, 2023
1 parent 3396ebf commit ef2250a
Show file tree
Hide file tree
Showing 10 changed files with 1,101 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup Node
uses: actions/[email protected]
with:
node-version: '20.5.1'
node-version: '20.8.1'
- name: Install Dependencies
run: npm ci
- name: Save error log
Expand All @@ -27,6 +27,8 @@ jobs:
with:
name: npm-debug-log-${{ hashFiles('package-lock.json') }}
path: npm-debug.log
- name: Circular Dependencies
run: npm run cycles
- name: Build Docker
run: docker compose build
- name: Build Components
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.5.1-slim AS busmap
FROM node:bookworm-slim AS busmap
WORKDIR /app
COPY package-lock.json package.json .
COPY packages/api/package.json /app/packages/api/package.json
Expand Down
Loading

0 comments on commit ef2250a

Please sign in to comment.