Skip to content

chore: bump @types/node from 20.14.11 to 22.0.0 #68

chore: bump @types/node from 20.14.11 to 22.0.0

chore: bump @types/node from 20.14.11 to 22.0.0 #68

Workflow file for this run

name: "Tests"
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
jobs:
action:
name: "Test GitHub Action"
runs-on: "ubuntu-22.04"
permissions:
contents: "read"
strategy:
matrix:
modules:
- path: "tests/data"
- path: "tests/data/"
- path: "./tests/data/"
fail-fast: false
steps:
- name: "Check out repository"
id: "checkout"
uses: "actions/checkout@v4"
- name: "Set up Dagger"
id: "setup-dagger"
uses: "./"
with:
module-path: "${{ matrix.modules.path }}"
- name: "Run Dagger"
id: "run-dagger"
run: |
dagger call test stdout
working-directory: "${{ steps.setup-dagger.outputs.module-path }}"