Skip to content

Bump the gha group in /.github/workflows with 1 update #30

Bump the gha group in /.github/workflows with 1 update

Bump the gha group in /.github/workflows with 1 update #30

Workflow file for this run

name: gha
on:
pull_request:
branches: [main]
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/[email protected]
- name: Setup Node
uses: actions/[email protected]
with:
node-version: "20.7.0"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Check for linting errors
run: npm run lint
- name: Check for build errors
run: npm run build
- name: Run test suite
run: npm test