Compare commits

2 Commits
v1 ... main

Author SHA1 Message Date
68e1a14674 ci: attempt to improve build times
All checks were successful
Continuous Integration / GitHub Actions Test (push) Successful in 21s
Continuous Integration / TypeScript Tests (push) Successful in 1m23s
Check Transpiled JavaScript / Check dist/ (push) Successful in 1m27s
2024-11-13 10:19:07 +13:00
1d60abdc59 docs: add example usage to README
Some checks failed
Continuous Integration / GitHub Actions Test (push) Successful in 21s
Continuous Integration / TypeScript Tests (push) Failing after 5m33s
Check Transpiled JavaScript / Check dist/ (push) Has been cancelled
2024-11-13 10:10:13 +13:00
3 changed files with 22 additions and 2 deletions

View File

@@ -35,7 +35,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: npm
#cache: npm
- name: Install Dependencies
id: install

View File

@@ -26,7 +26,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: npm
#cache: npm
- name: Install Dependencies
id: npm-ci

View File

@@ -1,3 +1,23 @@
# Setup Conan
Setup Conan for GitHub Actions
## Usage
Latest Conan Version
```yaml
steps:
- name: Install Conan
uses: https://git.119.224.65.18.sslip.io/siteorg/setup-conan@v1
```
Specific Conan Version
```yaml
steps:
- name: Install Conan
uses: https://git.119.224.65.18.sslip.io/siteorg/setup-conan@v1
with:
conan-version: 2.9.2
```