Support timestamp #421
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: pseudo-rest-api | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup | |
uses: ./.github/actions/ci-setup | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Building Project | |
run: npm run build | |
lint: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup | |
uses: ./.github/actions/ci-setup | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: ESLint and Prettier | |
run: npm run lint | |
type-check: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup | |
uses: ./.github/actions/ci-setup | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Type Checking | |
run: npm run typecheck |