Skip to content

jonathanbokvad is testing out github actions #7

jonathanbokvad is testing out github actions

jonathanbokvad is testing out github actions #7

Workflow file for this run

name: Build
run-name: ${{ github.actor }} is testing out github actions
permissions:
contents: read
pages: write
id-token: write
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run a one-line script
run: echo Hello, world!
- name: Run a multi-line script
run: |
echo Add other actions to build,
echo test, and deploy your projectss
- name: Setup node
uses: actions/setup-node@v3
- name: Install
run: npm ci
- name: Build
run: npm run package
# - name: 'Az CLI login'
# uses: azure/login@v1
# with:
# client-id: ${{ secrets.AZURE_CLIENT_ID }}
# tenant-id: ${{ secrets.AZURE_TENANT_ID }}
# subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
# - name: 'Run Azure CLI commands'
# run: az account show
- name: 'Custom Task running'
uses: ./
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}