Fix interpolating of time macros using UTC #38
Workflow file for this run
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
name: Test & Build | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
defaults: | |
run: | |
shell: bash | |
working-directory: ./ | |
permissions: | |
contents: read | |
env: | |
DO_NOT_TRACK: 1 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0 | |
with: | |
egress-policy: audit | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }} | |
ref: ${{ github.event.pull_request.head.ref || github.ref }} | |
fetch-depth: 1 | |
- name: Setup NodeJS environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: .nvmrc | |
cache: yarn | |
- name: Install frontend dependencies | |
run: yarn install --frozen-lockfile; | |
- name: Spellcheck | |
run: yarn spellcheck; | |
- name: Setup Go environment | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.22.1" | |
cache-dependency-path: "**/*.sum" | |
- name: Validate environment | |
run: | | |
echo "-------- node version -----" | |
node --version | |
echo "-------- npm version -----" | |
npm --version | |
echo "-------- yarn version -----" | |
yarn --version | |
echo "-------- go version -----" | |
go version | |
- name: Test | |
run: yarn test |