Skip to content

chore(deps): bump semver from 5.7.1 to 5.7.2 (#948) #277

chore(deps): bump semver from 5.7.1 to 5.7.2 (#948)

chore(deps): bump semver from 5.7.1 to 5.7.2 (#948) #277

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Tests
on:
pull_request:
branches:
- master
push:
branches:
- master
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn
- run: npm run build --if-present
# - run: npm test TODO: Enable tests again