Skip to content

Commit

Permalink
ci: Change CI to have full test suite again
Browse files Browse the repository at this point in the history
  • Loading branch information
theblockstalk committed Sep 1, 2023
1 parent dd0f20b commit 8108c2f
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,22 @@ jobs:
steps:
- uses: actions/checkout@v3

# - name: Install dependencies
# uses: actions/setup-node@v3
# with:
# node-version: 18.12.1
# # corepack is needed to run yarn through npm
# - run: corepack enable
# - run: yarn install --immutable
- name: Install dependencies
uses: actions/setup-node@v3
with:
node-version: 18.12.1
# corepack is needed to run yarn through npm
- run: corepack enable
- run: yarn install --immutable

# - name: Run lint and test
# uses: actions/setup-node@v3
# with:
# node-version: 18.12.1
# - run: yarn run build
# - run: yarn run lint
# - run: yarn run test
# - run: yarn run test:e2e
- name: Run lint and test
uses: actions/setup-node@v3
with:
node-version: 18.12.1
- run: yarn run build
- run: yarn run lint
- run: yarn run test
- run: yarn run test:e2e

- name: Build and push
uses: docker/build-push-action@v4
Expand Down

0 comments on commit 8108c2f

Please sign in to comment.