Implement more heavy handed Docker state cleanup and only run on error #22
This file contains 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: Node.js CI | |
# on: push | |
# # defaults: | |
# # run: | |
# # working-directory: packages/umbreld | |
# # jobs: | |
# # build: | |
# # runs-on: ubuntu-latest | |
# # strategy: | |
# # fail-fast: false | |
# # matrix: | |
# # task: | |
# # - format:check | |
# # - lint | |
# # - typecheck | |
# # - test:unit -- --coverage | |
# # - test:integration -- --coverage | |
# # steps: | |
# # - uses: actions/checkout@v3 | |
# # - uses: actions/setup-node@v3 | |
# # with: | |
# # node-version: 18 | |
# # - run: npm clean-install | |
# # - run: npm run ${{ matrix.task }} | |
# defaults: | |
# run: | |
# working-directory: packages/os | |
# jobs: | |
# build-os: | |
# runs-on: release-runner-64 | |
# strategy: | |
# fail-fast: false | |
# matrix: | |
# task: | |
# - build:amd64 | |
# - build:arm64 | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - uses: docker/setup-buildx-action@v2 | |
# - uses: actions/setup-node@v3 | |
# with: | |
# node-version: 18 | |
# - run: npm run ${{ matrix.task }} |