Skip to content

Add Wingman and caching to CI workflow #44

Add Wingman and caching to CI workflow

Add Wingman and caching to CI workflow #44

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run CI scripts
run: npm run ci
- name: Fix my build
uses: fly-ci/wingman-action@v1
if: failure()