Skip to content
This repository has been archived by the owner on Mar 16, 2024. It is now read-only.

Merge pull request #96 from tylerslaton/remove-ahcr-default #155

Merge pull request #96 from tylerslaton/remove-ahcr-default

Merge pull request #96 from tylerslaton/remove-ahcr-default #155

Workflow file for this run

name: 'build-test'
on: # rebuild any PRs and main branch changes
pull_request:
push:
branches:
- main
- 'releases/*'
jobs:
build: # make sure build/ci work properly
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: |
yarn install --pure-lockfile
- run: |
yarn run all
test: # make sure the action works on a clean machine without building
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: acorn-io/actions-setup@v2
- uses: ./
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}