Skip to content

Commit

Permalink
Merge pull request #1 from GagikNav/test
Browse files Browse the repository at this point in the history
ci: Add test.yaml GitHub Actions workflow
  • Loading branch information
GagikNav authored Jan 5, 2024
2 parents 7c3bbfe + 227da3c commit f83cce7
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Test Action

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '14'

- name: Install dependencies
run: npm ci

- name: Run action
uses: "GagikNav/[email protected]"
id: myaction


- name: Check outputs
run: echo "Changelog is ${{ steps.myaction.outputs.changelog }}"

0 comments on commit f83cce7

Please sign in to comment.