Skip to content

Commit

Permalink
feat: clean up and test ci
Browse files Browse the repository at this point in the history
  • Loading branch information
antoinebigard committed Nov 10, 2021
1 parent b39988e commit 5f10aec
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
- uses: actions/setup-node@v1
with:
node-version: 14
# - uses: actions/cache@v2
# with:
# path: "**/node_modules"
# key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
# restore-keys: |
# ${{ runner.os }}-
- uses: actions/cache@v2
with:
path: "**/node_modules"
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-
- name: Run yarn Install
run: yarn install --ignore-scripts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/yarn-ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: CI
on: [ pull_request ]
on: [ push ]
jobs:
ci:
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
install: install-root install-server install-ui

install-root:
yarn --cwd . install --frozen-lockfile
yarn install --ignore-scripts

install-server:
yarn --cwd server install --frozen-lockfile
Expand All @@ -27,4 +27,4 @@ lint:
clean:
docker-compose down

ci: install-server lint start-mongodb clean
ci: install-root lint start-mongodb clean

0 comments on commit 5f10aec

Please sign in to comment.