fill details for personal portfolio #32
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: battleship-tests | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./battleship | |
steps: | |
- name: checkout repo content | |
uses: actions/checkout@v3 | |
- name : install project dependencies | |
run: npm install --force | |
- name: run tests | |
run: npm test |