Use UTC timestamps #107
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: crate-gc-admin | |
on: | |
- pull_request | |
concurrency: | |
cancel-in-progress: true | |
group: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
registry-url: https://registry.npmjs.org/ | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn install | |
- name: Run linter | |
run: yarn lint | |
# We don't actually use the output, but it is useful to know if vite works. | |
- name: Build | |
run: yarn build | |
# Run tests | |
- name: Run component tests | |
run: yarn test |