You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
2
+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
3
+
4
+
name: Node.js CI
5
+
6
+
on:
7
+
# Runs on pushes targeting the default branch
8
+
push:
9
+
branches: ["main"]
10
+
11
+
# Run this workflow manually from the Actions tab
12
+
workflow_dispatch:
13
+
14
+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
15
+
permissions:
16
+
contents: read
17
+
pages: write
18
+
id-token: write
19
+
20
+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
21
+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
0 commit comments