Skip to content

feat: initial v1 release #87

feat: initial v1 release

feat: initial v1 release #87

Workflow file for this run

name: PR
on: pull_request
jobs:
build-lint-test:
# Prevents changesets action from creating a PR on forks
if: github.repository == 'open-wc/form-participation'
name: Build, Lint, Test
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@master
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0
- name: Setup Node 20.x
uses: actions/setup-node@master
with:
node-version: 20.x
registry-url: 'https://registry.npmjs.org'
- name: Install Dependencies
run: npm ci
- name: Build packages
run: npm run build
- name: Lint
run: npm run lint:ci
- name: Test
run: npm test