Skip to content

Commit

Permalink
cleaning up ci steps
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenmelnicki committed Jan 25, 2024
1 parent 0b5d89e commit 62f0982
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 15 deletions.
15 changes: 1 addition & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
deno: ["canary", "v1.x"]
deno: ["v1.x"]
os: [macOS-latest, windows-latest, ubuntu-latest]
include:
- os: ubuntu-latest
Expand All @@ -39,19 +39,6 @@ jobs:
- name: Run linter
run: deno lint

- name: Cache dependencies and Chrome
uses: actions/cache@v4
with:
path: |
${{ matrix.cache_path }}deps
${{ matrix.cache_path }}deno_puppeteer
key: ${{ runner.os }}-${{ hashFiles('**/*deps.ts', 'tests/fixture_twind_hydrate/twind.config.ts') }}

- name: Install Chromium
run: deno run -A --unstable https://deno.land/x/puppeteer@16.2.0/install.ts
env:
PUPPETEER_PRODUCT: chrome

- name: Type check project
run: deno task check

Expand Down
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"lock": false,
"tasks": {
"check": "deno check **/*.ts && deno check **/*.tsx",
"test": "deno test -A --parallel --unstable-kv",
"check": "deno fmt --check && deno lint && deno check **/*.ts && deno check **/*.tsx",
"cli": "echo \"import '\\$fresh/src/dev/cli.ts'\" | deno run --unstable -A -",
"manifest": "deno task cli manifest $(pwd)",
"start": "deno run -A --watch=static/,routes/ --unstable-kv dev.ts",
Expand Down

0 comments on commit 62f0982

Please sign in to comment.