chore(deps): update eslint packages #819
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: Test | |
on: | |
pull_request: | |
jobs: | |
tests: | |
name: Running Tests | |
timeout-minutes: 8 | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [21.3.0] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 21.3.0 | |
- name: Npm Install | |
run: npm install | |
- name: Generate GQL types | |
run: npm run generate | |
- name: Start containers | |
run: npm run test:dockerstart | |
- name: Run tests | |
run: npm run test | |
- name: Stop containers | |
if: always() | |
run: npm run test:dockerstop |