Add DENO_TLS_CA_STORE=system to all workflows to fix JSR package down… #723
Workflow file for this run
This file contains hidden or 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: ci | |
env: | |
DENO_VERSION: 2.x | |
DENO_TLS_CA_STORE: system | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: denoland/setup-deno@v2 | |
with: | |
deno-version: ${{ env.DENO_VERSION }} | |
- name: Check fmt & lint & type check & test | |
run: deno task check |