chore: add notes around origin of age keys #7
This file contains 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: "Continuous Integration" | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
terraform: | |
strategy: | |
matrix: | |
project: | |
- ee | |
- tr | |
- cloud | |
- registry | |
- infisical | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: DeterminateSystems/nix-installer-action@v9 | |
- uses: DeterminateSystems/magic-nix-cache-action@v2 | |
- run: echo -n "$SOPS_GPG_KEY_B64E" | base64 -d | gpg --import | |
env: | |
SOPS_GPG_KEY_B64E: ${{ secrets.SOPS_GPG_KEY_B64E }} | |
- run: nix-shell --run "task ${{ matrix.project }}:init" | |
- run: nix-shell --run "task ${{ matrix.project }}:plan" | |
test-cf-r2-registry: | |
name: Cloudflare R2 Registry Unit Tests | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./workers/container-registry | |
strategy: | |
matrix: | |
node-version: [18.x, 20.x] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Use Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install yarn | |
uses: borales/actions-yarn@v4 | |
with: | |
cmd: install --frozen-lockfile | |
- run: cp wrangler.toml.example wrangler.toml | |
- run: yarn run typecheck | |
- run: yarn test |