Skip to content

chore(deps): update dependency @types/node to v18.18.4 (#575) #1364

chore(deps): update dependency @types/node to v18.18.4 (#575)

chore(deps): update dependency @types/node to v18.18.4 (#575) #1364

name: GitHub Actions
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- 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@v4
- name: Setup Node 💻
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
cache: yarn
- name: Run linting 🧪
run: |
yarn
yarn lint