1
1
mirror of https://github.com/theoludwig/html-w3c-validator.git synced 2024-07-20 07:30:11 +02:00
html-w3c-validator/.github/workflows/test.yml

29 lines
487 B
YAML
Raw Normal View History

2022-01-06 19:52:25 +01:00
name: 'Test'
on:
push:
branches: [develop]
2022-01-06 19:52:25 +01:00
pull_request:
branches: [master, develop]
jobs:
test:
runs-on: 'ubuntu-latest'
steps:
- uses: 'actions/checkout@v3.0.0'
2022-01-06 19:52:25 +01:00
- name: 'Use Node.js'
uses: 'actions/setup-node@v3.1.0'
2022-01-06 19:52:25 +01:00
with:
2022-02-19 16:55:36 +01:00
node-version: 'lts/*'
2022-01-06 19:52:25 +01:00
cache: 'npm'
- name: 'Install'
run: 'npm install'
2022-01-06 22:38:49 +01:00
- name: 'Build'
run: 'npm run build'
2022-01-06 19:52:25 +01:00
- name: 'Test'
run: 'npm run test'