Skip to content

chore(deps): bump glob in the npm_and_yarn group across 1 directory #215

chore(deps): bump glob in the npm_and_yarn group across 1 directory

chore(deps): bump glob in the npm_and_yarn group across 1 directory #215

Workflow file for this run

# Builds the package and runs all tests.
name: CI
on:
push:
branches-ignore:
- master
- develop
- release-*
pull_request:
branches-ignore:
- master
- develop
- release-*
jobs:
build:
runs-on: ubuntu-22.04
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:
- name: Use NodeJS
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Check out repository
uses: actions/checkout@v4
- name: Install modules
run: npm ci --ignore-scripts
- name: Lint
run: npm run lint
- name: Test
run: npm run test