测试 CICD
This commit is contained in:
parent
c2119665fd
commit
60c1e61f73
34
.gitea/workflows/ci.yaml
Normal file
34
.gitea/workflows/ci.yaml
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
name: TDevOPsCICD
|
||||||
|
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
lint-and-test:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
node-version: [18.x, 20.x]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: Use Node.js ${{ matrix.node-version }}
|
||||||
|
uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: ${{ matrix.node-version }}
|
||||||
|
cache: 'npm'
|
||||||
|
- run: npm ci
|
||||||
|
- run: npm run lint
|
||||||
|
- run: npm test
|
||||||
|
env:
|
||||||
|
NODE_ENV: test
|
||||||
|
|
||||||
|
build-image:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
needs: lint-and-test
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: Build Docker Image
|
||||||
|
run: |
|
||||||
|
docker build -t my-registry.com/my-node-app:${{ github.sha }} .
|
||||||
|
docker push my-registry.com/my-node-app:${{ github.sha }}
|
||||||
|
env:
|
||||||
|
DOCKER_PASSWORD: ${{ secrets.REGISTRY_PASSWORD }}
|
0
.gitea/workflows/deploy.yaml
Normal file
0
.gitea/workflows/deploy.yaml
Normal file
Loading…
Reference in New Issue
Block a user