Skip to content

Merge pull request #5 from garydavisonos/hotfix/gd/npm-publish-badges #9

Merge pull request #5 from garydavisonos/hotfix/gd/npm-publish-badges

Merge pull request #5 from garydavisonos/hotfix/gd/npm-publish-badges #9

Workflow file for this run

name: "Code Tests 🧪"
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches:
- main
jobs:
linting:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "18.x"
- name: Install packages
working-directory: .
run: npm ci --legacy-peer-deps
- name: Tests
working-directory: .
run: npm run test