Skip to content

chore(deps): bump github.com/stretchr/testify in /server #2844

chore(deps): bump github.com/stretchr/testify in /server

chore(deps): bump github.com/stretchr/testify in /server #2844

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node

Check failure on line 1 in .github/workflows/node.js.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/node.js.yml

Invalid workflow file

(Line: 25, Col: 7): Unexpected value 'uses', (Line: 26, Col: 7): Unexpected value 'with', (Line: 23, Col: 7): Required property is missing: run
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Testing
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3.5.0
- name: Use Node.js ${{ matrix.node-version }}
working-directory: ./frontend
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: rm -rf node_modules && yarn install --frozen-lockfile
- run: yarn test