Skip to content

Merge pull request #479 from kgrubb/dependabot/npm_and_yarn/fortaweso… #993

Merge pull request #479 from kgrubb/dependabot/npm_and_yarn/fortaweso…

Merge pull request #479 from kgrubb/dependabot/npm_and_yarn/fortaweso… #993

Workflow file for this run

name: ci
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [18]
steps:
- name: Checkout 🛎
uses: actions/checkout@v4
- name: Setup node env 🏗
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- run: npm ci
- name: Run linter 👀
run: npm run lint