Skip to content

Commit

Permalink
feat: test
Browse files Browse the repository at this point in the history
  • Loading branch information
mlajkim committed Jan 4, 2025
1 parent cab951e commit c632add
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/docker-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,18 @@ jobs:
steps:
- uses: actions/checkout@v4

# Install Node.js for test purpose
- name: Set up Node.js to test with yarn test
uses: actions/setup-node@v3
with:
node-version: '18' # Make sure to stay in sync with the version defined in Dockerfile

- name: Install dependencies to test with yarn test
run: yarn install

- name: Run tests
run: yarn test

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

Expand Down

0 comments on commit c632add

Please sign in to comment.