Skip to content

Merge branch 'main' of https://github.com/oddbird/css-anchor-position… #993

Merge branch 'main' of https://github.com/oddbird/css-anchor-position…

Merge branch 'main' of https://github.com/oddbird/css-anchor-position… #993

Workflow file for this run

name: Lint & Test
on:
push:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Test
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: npm
- name: Install dependencies
run: |
npm install
npx playwright install --with-deps
- run: npm run 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: npm
- name: Lint
run: |
npm install
npm run lint:ci