Skip to content

chore(deps): update dependency @types/node to v18.17.7 #1213

chore(deps): update dependency @types/node to v18.17.7

chore(deps): update dependency @types/node to v18.17.7 #1213

Workflow file for this run

name: GitHub Actions
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Setup Node 💻
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
cache: yarn
- name: Run tests on Linux 🧪
if: runner.os == 'Linux'
run: |
yarn
xvfb-run -a yarn test
- name: Run tests on MacOS or Windows 🧪
if: runner.os != 'Linux'
run: |
yarn
yarn test
- name: SonarCloud Scan ☁️
uses: sonarsource/[email protected]
if: runner.os == 'Linux'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Setup Node 💻
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
cache: yarn
- name: Run linting 🧪
run: |
yarn
yarn lint