Skip to content

Commit

Permalink
ci: use yarn lock file to cache deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Ludea committed Jun 8, 2024
1 parent 941565b commit 7043639
Show file tree
Hide file tree
Showing 3 changed files with 5,708 additions and 30 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ jobs:
uses: actions/setup-node@v4.0.2
with:
node-version: 18
cache: yarn
cache-dependency-path: web/yarn.lock
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
with:
Expand Down
59 changes: 29 additions & 30 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,30 +1,29 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.*
/.yarn

# testing
/coverage

# production
dist
dist-ssr

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
yarn.lock

/src-tauri/Cargo.lock

.vscode
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.*
/.yarn

# testing
/coverage

# production
dist
dist-ssr

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*

/src-tauri/Cargo.lock

.vscode
Loading

0 comments on commit 7043639

Please sign in to comment.