Skip to content

Update URL of urlpattern spec following move to WHATWG (#1099) #1695

Update URL of urlpattern spec following move to WHATWG (#1099)

Update URL of urlpattern spec following move to WHATWG (#1099) #1695

Workflow file for this run

name: Test and lint
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout latest version of release script
uses: actions/checkout@v3
- name: Setup node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Test
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
if: ${{ env.GH_TOKEN }}
run: |
npm run test
- name: Lint
run: npm run lint