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

43 lines
967 B
YAML
Raw Normal View History

name: "Release"
2022-01-06 19:52:25 +01:00
on:
push:
branches: [master]
jobs:
release:
runs-on: "ubuntu-latest"
permissions:
contents: "write"
issues: "write"
pull-requests: "write"
id-token: "write"
2022-01-06 19:52:25 +01:00
steps:
- uses: "actions/checkout@v3.5.3"
2022-01-06 19:52:25 +01:00
with:
fetch-depth: 0
persist-credentials: false
- name: "Setup Node.js"
uses: "actions/setup-node@v3.6.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: "npm run build"
2022-01-06 19:52:25 +01:00
- run: "npm run build:typescript"
2023-01-10 22:15:14 +01:00
- name: "Verify the integrity of provenance attestations and registry signatures for installed dependencies"
run: "npm audit signatures"
- name: "Release"
run: "npm run release"
2022-01-06 19:52:25 +01:00
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}