1
1
mirror of https://github.com/theoludwig/html-w3c-validator.git synced 2024-11-09 22:08:12 +01:00
html-w3c-validator/.github/workflows/test.yml

29 lines
512 B
YAML
Raw Normal View History

name: "Test"
2022-01-06 19:52:25 +01:00
on:
push:
branches: [develop]
2022-01-06 19:52:25 +01:00
pull_request:
branches: [main, develop]
2022-01-06 19:52:25 +01:00
jobs:
test:
runs-on: "ubuntu-latest"
2022-01-06 19:52:25 +01:00
steps:
- uses: "actions/checkout@v4.2.2"
2022-01-06 19:52:25 +01:00
- name: "Setup Node.js"
uses: "actions/setup-node@v4.1.0"
2022-01-06 19:52:25 +01:00
with:
node-version: "lts/*"
cache: "npm"
2022-01-06 19:52:25 +01:00
- name: "Install dependencies"
run: "npm clean-install"
2022-01-06 19:52:25 +01:00
- name: "Build"
run: "node --run build"
2022-01-06 22:38:49 +01:00
- name: "Test"
run: "node --run test"