Skip to content

chore(deps): update actions/checkout action to v4 #1967

chore(deps): update actions/checkout action to v4

chore(deps): update actions/checkout action to v4 #1967

name: Continuous Integration
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
Linting:
name: Linting NodeJS
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
- name: Use Node.js v18
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3
with:
node-version: "18.x"
cache: yarn
registry-url: https://registry.npmjs.org/
- name: Install Dependencies
run: yarn --immutable
- name: Run ESLint
run: yarn lint --fix=false
Building:
name: Compile Source Code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
- name: Use Node.js v18
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3
with:
node-version: "18.x"
cache: yarn
registry-url: https://registry.npmjs.org/
- name: Install dependencies
run: yarn --immutable
- name: TypeCheck
run: yarn typecheck
- name: Build Code
run: yarn build