Version history: Show edit button only for latest version. #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%YAML 1.1 | |
# ^-- ATTN: [2019-12-31] If you use a later version, Github will fail | |
# with a bogus error message "You have an error in your yaml syntax". | |
# -*- coding: UTF-8, tab-width: 4 -*- | |
--- | |
on: | |
push: | |
branches: | |
- '*' | |
jobs: | |
job_ci_test: | |
runs-on: ubuntu-latest | |
name: 'CI tests' | |
steps: | |
- run: 'git config --global init.defaultBranch master' | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 16 | |
- uses: actions/checkout@v2 | |
- run: './test/ci.sh' | |
... |