Skip to content

Merge pull request #98 from oddbird/dependabot/npm_and_yarn/ws-8.17.1 #205

Merge pull request #98 from oddbird/dependabot/npm_and_yarn/ws-8.17.1

Merge pull request #98 from oddbird/dependabot/npm_and_yarn/ws-8.17.1 #205

Workflow file for this run

name: Lint & Test
on:
push:
pull_request:
types: [reopened]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: yarn
- name: Install dependencies
run: |
yarn install --immutable
npx playwright install --with-deps
- run: yarn test:ci
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: yarn
- name: Lint
run: |
yarn install --immutable
yarn lint:ci