Files
werf-actions/.github/workflows/test.yaml
Aleksei Igrychev 72a1f765ae Merge pull request #73 from werf/feat/use_nodejs_20
feat: use nodejs 20
2024-02-14 15:34:26 +00:00

48 lines
845 B
YAML

name: Test
on:
push:
schedule:
- cron: "0 8 * * *"
workflow_dispatch:
jobs:
channel:
name: By channel
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install
uses: ./install
- run: werf version
version:
name: By version
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install
uses: ./install
with:
version: v1.2.35
- run: werf version