Skip to content

Migrate to DNA 4

Migrate to DNA 4 #36

Workflow file for this run

name: Pull Request
on:
pull_request:
types: [opened, synchronize]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
cache: yarn
- name: Install project dependencies
run: yarn install
- name: Lint
run: yarn lint
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
cache: yarn
- name: Install project dependencies
run: yarn install
- name: Run build script
run: yarn build
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
cache: yarn
- name: Install project dependencies
run: yarn install
- name: Install chromium
run: yarn playwright install --with-deps chromium
- name: Run tests
run: yarn test --coverage
- name: Upload coverage to codecov
uses: codecov/codecov-action@v3
if: always()
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: coverage/clover.xml