add: CI/CD first script
All checks were successful
Deployment CI/CD / test-job (push) Successful in 7m5s
All checks were successful
Deployment CI/CD / test-job (push) Successful in 7m5s
This commit is contained in:
parent
036df802d5
commit
bc429233d4
22
.gitea/workflows/deploy.yml
Normal file
22
.gitea/workflows/deploy.yml
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
name: Deployment CI/CD
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test-job:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
node-version: [18.x]
|
||||||
|
steps:
|
||||||
|
- name: Message de confirmation
|
||||||
|
run: ls -a
|
||||||
|
|
||||||
|
- name: Checkout repository code
|
||||||
|
uses: https://gitea.com/actions/checkout@v4
|
||||||
|
with:
|
||||||
|
ref: 'main'
|
||||||
|
|
||||||
|
- name: Use Node.js ${{ matrix.node-version }}
|
||||||
|
uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: ${{ matrix.node-version }}
|
||||||
Loading…
Reference in New Issue
Block a user