Skip to content

Docker Deployments #576

Docker Deployments

Docker Deployments #576

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
test:
environment: secrets
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node Environment
uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: npm
- name: Install Dependencies
run: |
npm ci
cd http && npm ci
- name: Execute Tests
env:
CLOUDFLARE_TOKEN: ${{ secrets.CLOUDFLARE_TOKEN }}
CACHE_BASIC_AUTH: ${{ secrets.CACHE_BASIC_AUTH }}
run: script/test