Skip to content

Fix indent

Fix indent #11

Workflow file for this run

on: [push]
name: Action Test Workflow
jobs:
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: npm
- name: Install dependencies
run: npm ci
- name: Compile Typescript
run: npm run build
- name: Load Action Locally
uses: ./
- name: Try accessing the added ENV vars
run: echo "The current build environment is in $CI_NAME"