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/release.yml

35 lines
678 B
YAML
Raw Normal View History

2022-01-06 19:52:25 +01:00
name: 'Release'
on:
push:
branches: [master]
jobs:
release:
runs-on: 'ubuntu-latest'
steps:
2023-04-02 21:27:42 +02:00
- uses: 'actions/checkout@v3.5.0'
2022-01-06 19:52:25 +01:00
with:
fetch-depth: 0
persist-credentials: false
- name: 'Use Node.js'
2023-01-10 22:15:14 +01:00
uses: 'actions/setup-node@v3.6.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'
- name: 'Build'
run: 'npm run build'
2023-01-10 22:15:14 +01:00
- run: 'npm run build:typescript'
2022-01-06 19:52:25 +01:00
- name: 'Release'
run: 'npm run release'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}