Technology stack and Content cards #2
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: 'Testing Pull Request' | |
on: ['pull_request'] | |
jobs: | |
testing_pull_request: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Node | |
uses: actions/[email protected] | |
- name: Install packages | |
run: npm install | |
- name: Run tests | |
run: npm test |