fix: npm install reshimp asdf #98
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Dotfiles Installation | |
on: | |
push: | |
branches: | |
- master | |
pull_request_target: | |
workflow_dispatch: | |
jobs: | |
install: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest] | |
steps: | |
- name: Clone this repository | |
uses: actions/checkout@v2 | |
- name: Install using Makefile | |
run: | | |
if [ "$RUNNER_OS" == "macOS" ]; then | |
make | |
else | |
sudo make | |
fi | |
- name: Verify runcom setup | |
run: source $HOME/.bash_profile | |
- name: Run tests | |
if: matrix.os == 'macos-latest' | |
run: make test |