fix: bug with user.fields and twitter #3 #5
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: Vouch Server Test | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "server/**" | |
push: | |
branches: | |
- main | |
paths: | |
- "server/**" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: npm install | |
working-directory: ./server | |
- name: Run tests | |
run: npm test | |
working-directory: ./server |